import { PackagingBoxType } from "./all.enum"; import { Barcode } from "./barcode"; import { DomainObject } from "./domain-object"; import { GatewayPrinter } from "./gateway-printer"; import { InventLocation } from "./invent-location"; import { ItemGroup } from "./item-group"; import { Product } from "./product"; import { WMSLocation } from "./wms-location"; export declare class PickingTable extends DomainObject { ToadId?: string | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; LabelPrinterId?: string | undefined; LabelPrinter?: GatewayPrinter | undefined; DocumentPrinterId?: string | undefined; DocumentPrinter?: GatewayPrinter | undefined; ItemGroups?: ItemGroup[] | undefined; Products?: Product[] | undefined; PackagingBoxes?: PackagingBoxType[] | undefined; Barcodes?: Barcode[] | undefined; } //# sourceMappingURL=picking-table.d.ts.map