import { DomainObject } from "./domain-object"; import { PackagingBoxType } from "./all.enum"; import { Barcode } from "./barcode"; import { PackagingBoxSetting } from "./packaging-box-setting"; export declare class PackagingBox extends DomainObject { BoxId?: string | undefined; Length_InCm?: number | undefined; Width_InCm?: number | undefined; Height_InCm?: number | undefined; Weight_InKg?: number | undefined; BoxType?: PackagingBoxType | undefined; Barcodes?: Barcode[] | undefined; Settings?: PackagingBoxSetting[] | undefined; } //# sourceMappingURL=packaging-box.d.ts.map