import { Product as ShopifyProduct, ProductOption } from '../../gql'; import type { Product } from '../../types/product'; export declare const normalizeProductOption: ({ id, name, values, }: ProductOption) => { __typename: "ProductOption"; id: string; name: string; values: { label: string; hexColors?: string[]; }[]; }; export declare const getCouponsFromVariantMetafields: ({ metafields, variantId }: { metafields: any; variantId: string; }) => any; export declare function normalizeProduct(product: ShopifyProduct, metafieldNamespacePrefix?: string): Product; //# sourceMappingURL=product.d.ts.map