import BaseClass from "../utils/BaseClass"; import { StockLocationCollection } from './StockLocation'; import { InventoryModelCollection } from './InventoryModel'; import { SingleRelationship } from "../typings/Library"; export declare class InventoryStockLocationCollection extends BaseClass { static className: string; priority: number; onHold: boolean; id: string; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; stockLocation: () => SingleRelationship; inventoryModel: () => SingleRelationship; static define(): void; } declare const InventoryStockLocation: import("../typings/Library").BaseResource; export default InventoryStockLocation;