export declare enum DeliveryClassification {
    PARCEL = "PARCEL",
    HEAVY = "HEAVY"
}
export type DeliveryClassificationType = keyof typeof DeliveryClassification;
