import { DomainObject } from "./domain-object"; import { WMSLocation } from "./wms-location"; import { WMSPalletType } from "./wms-pallet-type"; export declare class WMSPalletTypeConfig extends DomainObject { ConfigId?: string | undefined; Quantity?: number | undefined; PalletTypeId?: string | undefined; PalletType?: WMSPalletType | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; } //# sourceMappingURL=wms-pallet-type-config.d.ts.map