import Head from 'next/head';
import { type ComponentProps } from 'react';
import type { MetaThemeColors } from './utils';
export interface NextStudioHeadProps extends Partial<MetaThemeColors> {
    children?: ComponentProps<typeof Head>['children'];
    title?: string;
    favicons?: boolean;
}
export declare const NextStudioHead: import("react").MemoExoticComponent<({ children, themeColorDark, themeColorLight, title, favicons, }: NextStudioHeadProps) => JSX.Element>;
