/// <reference types="react" />
export interface MetaProps {
    description?: string;
    title?: string;
    withManifest?: boolean;
}
declare const Meta: import("react").NamedExoticComponent<MetaProps>;
export default Meta;
