export declare const ids: readonly [0, 1, 2, 3, 4]; export type Id = typeof ids[number]; export declare const isId: (id: any) => id is 0 | 1 | 2 | 4 | 3; export declare const ROAM: 0, SAFE: 1, MID: 2, OFF: 3, JUNGLE: 4; export declare const GQL_ENUM_MAPPING: { readonly 0: "ROAMING"; readonly 1: "SAFE_LANE"; readonly 2: "MID_LANE"; readonly 3: "OFF_LANE"; readonly 4: "JUNGLE"; }; export declare const gqlEnums: ("JUNGLE" | "ROAMING" | "SAFE_LANE" | "MID_LANE" | "OFF_LANE")[]; export type Enum = typeof gqlEnums[number]; export declare const isGqlEnum: (em: any) => em is "JUNGLE" | "ROAMING" | "SAFE_LANE" | "MID_LANE" | "OFF_LANE"; export declare const toGqlEnum: (id: Id) => "JUNGLE" | "ROAMING" | "SAFE_LANE" | "MID_LANE" | "OFF_LANE"; export declare const fromGqlEnum: (em: Enum) => 0 | 1 | 2 | 4 | 3 | undefined;