/* eslint-disable */
import * as Types from '@graphcommerce/graphql-mesh/.mesh';

export type ConfigurableProductFormFragment = { sku?: string | null, configurable_options?: Array<{ attribute_code?: string | null, uid: string, label?: string | null, position?: number | null, use_default?: boolean | null, values?: Array<{ uid?: string | null, use_default_value?: boolean | null, store_label?: string | null, swatch_data?: { __typename: 'ColorSwatchData', value?: string | null } | { __typename: 'ImageSwatchData', thumbnail?: string | null, value?: string | null } | { __typename: 'TextSwatchData', value?: string | null } | null } | null> | null } | null> | null, variants?: Array<{ attributes?: Array<{ code?: string | null, label?: string | null, uid: string } | null> | null, product?: { __typename: 'SimpleProduct', uid: string, sku?: string | null, name?: string | null, url_key?: string | null, rating_summary: number, compare_product_id?: number | null, small_image?: { url?: string | null, label?: string | null } | null, price_range: { minimum_price: { regular_price: { currency?: Types.CurrencyEnum | null, value?: number | null }, discount?: { amount_off?: number | null, percent_off?: number | null } | null, final_price: { currency?: Types.CurrencyEnum | null, value?: number | null } } } } | null } | null> | null };
