export declare const ids: readonly [1, 2, 3, 4, 5, 6]; export type Id = typeof ids[number]; export declare const isId: (id: any) => id is 1 | 2 | 4 | 3 | 5 | 6; export declare const NA: 1, SA: 2, EUROPE: 3, CIS: 4, CHINA: 5, SEA: 6; export declare const GQL_ENUM_MAPPING: { readonly 1: "NA"; readonly 2: "SA"; readonly 3: "EUROPE"; readonly 4: "CIS"; readonly 5: "CHINA"; readonly 6: "SEA"; }; export declare const gqlEnums: ("EUROPE" | "CHINA" | "SEA" | "NA" | "SA" | "CIS")[]; export type Enum = typeof gqlEnums[number]; export declare const isGqlEnum: (em: any) => em is "EUROPE" | "CHINA" | "SEA" | "NA" | "SA" | "CIS"; export declare const toGqlEnum: (id: Id) => "EUROPE" | "CHINA" | "SEA" | "NA" | "SA" | "CIS"; export declare const fromGqlEnum: (em: Enum) => 1 | 2 | 4 | 3 | 5 | 6 | undefined;