import { IkasProductAttributeTableTemplate } from "./table-template"; import { IkasProductAttributeOption } from "./option"; import { IkasProductAttributeTranslation } from "./translation"; export declare type IkasProductAttribute = { id: string; name: string; description: string | null; type: IkasProductAttributeType; options: IkasProductAttributeOption[] | null; tableTemplate: IkasProductAttributeTableTemplate | null; translations?: IkasProductAttributeTranslation[] | null; }; export declare enum IkasProductAttributeType { CHOICE = "CHOICE", MULTIPLE_CHOICE = "MULTIPLE_CHOICE", TEXT = "TEXT", BOOLEAN = "BOOLEAN", NUMERIC = "NUMERIC", DATE = "DATE", DATETIME = "DATETIME", HTML = "HTML", TABLE = "TABLE", IMAGE = "IMAGE", PRODUCT = "PRODUCT" }