import { Page } from '@jetshop/core/types'; import React from 'react'; import { WebPage } from 'schema-dts'; export interface StructuredPageDataProps { /** The page object */ page: Page; /** * Optional object containing extra fields. These will be merged with the * default fields. Full list of fields available at * @url https://schema.org/Product */ extraFields?: Partial; } /** Renders structured product data using Schema.org vocab */ declare const StructuredPageData: React.FC; export { StructuredPageData };