import BaseClass from "../utils/BaseClass"; import { MultiRelationship } from "../typings/Library"; import { InventoryStockLocationCollection } from './InventoryStockLocation'; export declare class InventoryModelCollection extends BaseClass { static className: string; name: string; id: string; stockLocationsCutoff: number; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; inventoryStockLocations: () => MultiRelationship; static define(): void; } declare const InventoryModel: import("../typings/Library").BaseResource; export default InventoryModel;