import { FC } from "react"; import { FacebookProps } from "../Facebook"; import { ColorScheme } from "../Meta"; import { TwitterProps } from "../Twitter"; declare type SEOProps = { title?: string; description?: string; keywords?: string[]; icon?: string; themeColor?: string; colorScheme?: ColorScheme; facebook?: Pick; twitter?: Pick; }; declare const SEO: FC; export default SEO; export type { SEOProps };