import { IkasProductOption } from "./option"; export declare type IkasProductOptionSelectValueTranslations = { id: string; value: string | null; }; export declare type IkasProductOptionTranslations = { id: string; name: string | null; optionalText: string | null; values: IkasProductOptionSelectValueTranslations[] | null; }; export declare type IkasProductOptionSetTranslations = { locale: string; options: IkasProductOptionTranslations[] | null; }; export declare type IkasProductOptionSet = { id: string; name: string; options: IkasProductOption[]; translations?: IkasProductOptionSetTranslations[] | null; };