/** * Representation of the JAR22 certification category. JAR22 only defines 2 categories: * Utility and Aerobatic. However, some older gliders, like the K13, have a different * even more restricted category to allow higher cockpit weights under limited conditions, * so the "special" category has been added for these. */ export declare enum CertificationCategory { UTILITY = "utility", AEROBATIC = "aerobatic", SPECIAL = "special" } export declare const reverseCertificationCategoryMap: Map; //# sourceMappingURL=certifcation-category.d.ts.map