import { VariantOptionType, ProductVariantType } from '../types'; export declare const getVariantsFromProduct: (variants: ProductVariantType[], ID: string) => any[]; export declare const simplifyOptions: (options: VariantOptionType[]) => { key: string; value: string; isDisabled: boolean; originalKey: string; originalValue: string; }[];