export declare type IkasOrderLineItemOptionValue = { name: string | null; price: number | null; priceType: ProductOptionPriceTypeEnum | null; value: string; }; export declare enum ProductOptionPriceTypeEnum { AMOUNT = "AMOUNT", RATIO = "RATIO" }