export declare const ids: readonly [0, 1, 2, 3, 4, 5]; export type Id = typeof ids[number]; export declare const isId: (id: any) => id is 0 | 1 | 2 | 4 | 3 | 5; export declare const F: 0, D: 1, C: 2, B: 3, A: 4, S: 5; export declare const GQL_ENUM_MAPPING: { readonly 0: "F"; readonly 1: "D"; readonly 2: "C"; readonly 3: "B"; readonly 4: "A"; readonly 5: "S"; }; export declare const gqlEnums: ("A" | "D" | "F" | "C" | "B" | "S")[]; export type Enum = typeof gqlEnums[number]; export declare const isGqlEnum: (em: any) => em is "A" | "D" | "F" | "C" | "B" | "S"; export declare const toGqlEnum: (id: Id) => "A" | "D" | "F" | "C" | "B" | "S"; export declare const fromGqlEnum: (em: Enum) => 0 | 1 | 2 | 4 | 3 | 5 | undefined;