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