declare const wheelchairTypes: {
    '0': string;
    '1': string;
    '2': string;
};
export type EnhancedWheelchairBoardingType = (typeof wheelchairTypes)[keyof typeof wheelchairTypes];
export default wheelchairTypes;
