import { Guid } from ".."; export declare class WarehouseLocation { publicId: Guid; name: string; locationCode: string; locationInfo: LocationInfo; locationStocks: LocationStock[]; } export declare class LocationInfo { height: number; width: number; depth: number; isCooled: boolean; locationType: LocationType; } export declare class LocationType { publicId: Guid; name: string; description: string; pickable: boolean; } export declare class LocationStock { articlePublicId: Guid; locationPublicId: Guid; amount: number; } //# sourceMappingURL=warehouseLocation.d.ts.map