import { JsonCustomConvert } from "json2typescript"; /** * @export * @enum {string} */ export declare enum RateType { ReducedA = 65, ReducedB = 66, Food = 70, General = 71, IncreasedStandard = 73, LinenRental = 76, Medical = 77, Construction = 78, Parking = 80, SuperReduced = 81, ReducedR = 82, Standard = 83, Leasing = 84, LeasingLow = 85, Services = 88, Zero = 90 } export declare class RateTypeConverter implements JsonCustomConvert { serialize(data: RateType): RateType; deserialize(enumType: string): RateType; }