import { ResourceConfig, ConcreteResourceInstance, Resource } from '../resource'; import { AttachmentInstance } from './Attachments'; import { ShippingMethodInstance } from './ShippingMethods'; import { StockLocationInstance } from './StockLocations'; export interface DeliveryLeadTimeAttributes { min_hours: number; max_hours: number; min_days: number; max_days: number; } export interface DeliveryLeadTimeRelationships { stock_location: StockLocationInstance; shipping_method: ShippingMethodInstance; attachments: AttachmentInstance[]; } export declare type DeliveryLeadTimeInstance = ConcreteResourceInstance; export declare const DeliveryLeadTimesConfig: ResourceConfig; export declare const DeliveryLeadTimes: Resource; //# sourceMappingURL=DeliveryLeadTimes.d.ts.map