import React from 'react'; /** CSS is a specialised metatag */ export declare const Css: ({ css }: { css: string[]; }) => React.JSX.Element; /** * My Page */ interface Title { title: string; } /** * */ interface NameContent { name: string; content: string; } /** * */ interface OpenGraph { property: string; content: string; } /** * */ interface HttpEquiv { httpEquiv: string; content: string; } /*** * */ interface Custom { [name: string]: unknown; } /** * */ interface Other extends Custom { tagType: string; } export type TagDescriptor = Title | NameContent | OpenGraph | HttpEquiv | Custom | Other; interface MetaProps { tags: TagDescriptor[] | undefined; } export declare const Meta: ({ tags }: MetaProps) => React.JSX.Element; export {}; //# sourceMappingURL=htmlTags.d.ts.map