interface MetaComponentProps { title?: string; description?: string; keywords?: string; ogTitle?: string; ogDescription?: string; ogImage?: string; ogUrl?: string; twitterCard?: string; twitterTitle?: string; twitterDescription?: string; twitterImage?: string; location?: { protocol: string; host: string; }; schema?: any[]; } declare const MetaComponent: (props: MetaComponentProps) => import("react/jsx-runtime").JSX.Element; export { MetaComponent }; export default MetaComponent;