import BaseClass from "../utils/BaseClass"; import { StockLocationCollection } from './StockLocation'; import { SkuCollection } from './Sku'; import { SingleRelationship } from "../typings/Library"; import { ShipmentCollection } from './Shipment'; import { LineItemCollection } from './LineItem'; export declare class StockTransferCollection extends BaseClass { static className: string; _cancel: boolean; _complete: boolean; _inTransit: boolean; _picking: boolean; _upcoming: boolean; cancelledAt: Date; completedAt: Date; createdAt: Date; id: string; metadata: object; quantity: number; reference: string; referenceOrigin: string; skuCode: string; status: string; updatedAt: Date; originStockLocation: () => Promise> | SingleRelationship | null; destinationStockLocation: () => Promise> | SingleRelationship | null; lineItem: () => Promise> | SingleRelationship | null; sku: () => Promise> | SingleRelationship | null; shipment: () => Promise> | SingleRelationship | null; static define(): void; } declare const StockTransfer: import("../typings/Library").BaseResource; export default StockTransfer;