import { IkasProduct } from ".."; import { IkasImage } from "../../image"; import { IkasProductAttribute } from "../attribute"; import { IkasProductAttributeOption } from "../attribute/option"; export declare type IkasProductAttributeValue = { imageIds: string[] | null; productAttributeId: string | null; productAttributeOptionId: string | null; value: string | null; images?: IkasImage[]; productAttribute?: IkasProductAttribute | null; productAttributeOption?: IkasProductAttributeOption | null; products?: IkasProduct[]; }; export declare type IkasAttributeTableCellValue = { colId: string; rowId: string; value: string | null; }; export declare type IkasProductAttributeMap = { attribute: IkasProductAttribute; values: IkasProductAttributeValue[]; };