import { Category } from '@jetshop/core/types'; import React from 'react'; import { CollectionPage } from 'schema-dts'; export interface StructuredCategoryDataProps { /** The category object */ category: Category; /** * 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 StructuredCategoryData: React.FC; export { StructuredCategoryData };