import { FC } from "react";
declare type MetaProps = {
    title?: string;
    description?: string;
    keywords?: string[];
    icon?: string;
    themeColor?: string;
    colorScheme?: ColorScheme;
};
declare type ColorScheme = "normal" | "light" | "dark" | "only light";
declare const Meta: FC<MetaProps>;
export default Meta;
export type { ColorScheme, MetaProps };
