///
type Props = {
seo: {
yoast_head_json: Record;
yoast_head?: string;
hide_on_google_news: boolean;
};
/**
* If true, will make the Yoast component use the `yoast_head` raw html to populate meta tags
* instead of `yoast_head_json`.
*
* `yoast_head` is the default and preferable option.
*/
useHtml?: boolean;
};
/**
* The Yoast component renders the Yoast SEO meta tags.
* This component is automatically rendered by {@link HeadlessApp} so you don't have to manually render it.
*
* @param props Component props. Expects a single `seo` prop
*
* @category React Components
*/
export declare function Yoast({ seo, useHtml }: Props): JSX.Element;
export {};