import BaseClass from "../utils/BaseClass"; import { StockLocationCollection } from './StockLocation'; import { ShippingMethodCollection } from './ShippingMethod'; import { SingleRelationship } from "../typings/Library"; export declare class DeliveryLeadTimeCollection extends BaseClass { static className: string; minHours: number; maxHours: number; minDays: number; maxDays: number; id: string; createdAt: Date; updatedAt: Date; reference: string; referenceOrigin: string; metadata: Record; stockLocation: () => SingleRelationship; shippingMethod: () => SingleRelationship; static define(): void; } declare const DeliveryLeadTime: import("../typings/Library").BaseResource; export default DeliveryLeadTime;