import { IkasProductUnitType } from "../../order/line-item/base-unit"; export declare type IkasProductBaseUnit = { baseAmount: number | null; type: IkasProductUnitType; unit: IkasProductUnit; }; export declare type IkasProductUnit = { id: string; name: string; };