import { IkasVariantValue } from "./variant-value"; export declare type IkasVariantType = { id: string; name: string; selectionType: IkasVariantSelectionType; values: IkasVariantValue[]; translations?: IkasVariantTypeTranslation[] | null; }; export declare enum IkasVariantSelectionType { CHOICE = "CHOICE", COLOR = "COLOR" } export declare type IkasVariantTypeTranslation = { locale: string; name: string | null; values: IkasVariantValueTranslation[] | null; }; export declare type IkasVariantValueTranslation = { id: string; name: string | null; };