import { Product as FlightProduct, ProductVariantOption } from '@jetshop/core/types'; import React from 'react'; import { Product } from 'schema-dts'; export interface StructuredProductDataProps { /** The product object */ product: FlightProduct; /** Optional pre-selected variant */ initialVariant?: ProductVariantOption | null; /** * 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 StructuredProductData: React.FC; export { StructuredProductData };