export declare type ShippingMethodType = { provider: string; service: string; cost: { code: string; value: number; }; message: string; isEnable: boolean; }; export declare type TotalWeightType = { unit: 'GR' | 'KG'; value: number; }; export declare type TotalVolumeType = { length: number; height: number; width: number; unit: 'CM' | 'M' | 'INCH'; };