import { Product, ProductVariantOption } from '@jetshop/core/types'; import React from 'react'; import { OpenGraphDataTag } from './OpenGraphGeneralPageData'; export interface OpenGraphProductDataProps { /** The product object */ product: Product; /** Optional pre-selected variant */ initialVariant?: ProductVariantOption; /** * Optional fields can be suppilied via a list of objects. * Will override default values if provided. * [{ property: 'og:title', content: 'Example title' }]. * * Full list of fields available at * @url https://ogp.me/ */ optionalFields?: OpenGraphDataTag[]; } /** * Get the brand field from a product's customFields. * * Usually you'd want to pass in the brand field from your shop config. */ export declare function getBrand(product: Product, brandField?: string): any; export declare const OpenGraphProductData: React.FC;