import { default as React } from 'react'; export interface MetaProps { title: string; metas: { content: string; name?: string; property?: string; }[]; links?: { rel: string; href: string; type?: string; title?: string; }[]; robots?: { index: string; follow: string; }; hasCaptcha?: boolean; } export declare const Meta: React.FC;