import BaseClass from "../utils/BaseClass"; import { ShipmentCollection } from './Shipment'; import { LineItemCollection } from './LineItem'; import { StockItemCollection } from './StockItem'; import { SingleRelationship } from "../typings/Library"; export declare class ShipmentLineItemCollection extends BaseClass { static className: string; skuCode: string; quantity: number; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: object; shipment: () => SingleRelationship; lineItem: () => SingleRelationship; stockItem: () => SingleRelationship; static define(): void; } declare const ShipmentLineItem: import("../typings/Library").BaseResource; export default ShipmentLineItem;