declare type SizeUnit = "CM" | "INCH"; declare type WeightUnit = "KG" | "POUND"; declare type SizeValue = { value: string; unit: SizeUnit; }; declare type WeightValue = { value: string; unit: WeightUnit; }; declare type BaggageInfo = { height: SizeValue; length: SizeValue; width: SizeValue; weight: WeightValue; }; export declare type BagsInfo = { hasNoCheckedBags: boolean; checkedBag: BaggageInfo; handBag: BaggageInfo; }; export {};