import BaseClass from "../utils/BaseClass"; import { StockLocationCollection } from './StockLocation'; import { SkuCollection } from './Sku'; import { SingleRelationship } from "../typings/Library"; export declare class StockItemCollection extends BaseClass { static className: string; skuCode: string; quantity: number; id: string; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; stockLocation: () => SingleRelationship; sku: () => SingleRelationship; static define(): void; } declare const StockItem: import("../typings/Library").BaseResource; export default StockItem;