import BaseClass from "../utils/BaseClass"; import { MultiRelationship, SingleRelationship } from "../typings/Library"; import { InventoryStockLocationCollection } from './InventoryStockLocation'; import { StockItemCollection } from './StockItem'; import { AddressCollection } from './Address'; export declare class StockLocationCollection extends BaseClass { static className: string; name: string; labelFormat: string; id: string; createdAt: string; updatedAt: string; reference: string; referenceOrigin: string; metadata: object; address: () => SingleRelationship; InventoryStockLocations: () => MultiRelationship; stockItems: () => MultiRelationship; static define(): void; } declare const StockLocation: import("../typings/Library").BaseResource; export default StockLocation;