export declare const ids: readonly [0, 1, 2, 3]; export type Id = typeof ids[number]; export declare const isId: (id: any) => id is 0 | 1 | 2 | 3; export declare const AMERICAS: 0, SE_ASIA: 1, EUROPE: 2, CHINA: 3; export declare const GQL_ENUM_MAPPING: { readonly 0: "AMERICAS"; readonly 1: "SE_ASIA"; readonly 2: "EUROPE"; readonly 3: "CHINA"; }; export declare const gqlEnums: ("AMERICAS" | "SE_ASIA" | "EUROPE" | "CHINA")[]; export type Enum = typeof gqlEnums[number]; export declare const isGqlEnum: (em: any) => em is "AMERICAS" | "SE_ASIA" | "EUROPE" | "CHINA"; export declare const toGqlEnum: (id: Id) => "AMERICAS" | "SE_ASIA" | "EUROPE" | "CHINA"; export declare const fromGqlEnum: (em: Enum) => 0 | 1 | 2 | 3 | undefined;