export declare const ids: readonly [1, 2, 3, 1000, 1001]; export type Id = typeof ids[number]; export declare const isId: (id: any) => id is 1 | 2 | 3 | 1000 | 1001; export declare const MVP: 1, TOP_CORE: 2, TOP_SUPPORT: 3, VSMVP: 1000, LVP: 1001; export declare const GQL_ENUM_MAPPING: { readonly 1: "MVP"; readonly 2: "TOP_CORE"; readonly 3: "TOP_SUPPORT"; readonly 1000: "VSMVP"; readonly 1001: "LVP"; }; export declare const gqlEnums: ("MVP" | "TOP_CORE" | "TOP_SUPPORT" | "VSMVP" | "LVP")[]; export type Enum = typeof gqlEnums[number]; export declare const isGqlEnum: (em: any) => em is "MVP" | "TOP_CORE" | "TOP_SUPPORT" | "VSMVP" | "LVP"; export declare const toGqlEnum: (id: Id) => "MVP" | "TOP_CORE" | "TOP_SUPPORT" | "VSMVP" | "LVP"; export declare const fromGqlEnum: (em: Enum) => 1 | 2 | 3 | 1000 | 1001 | undefined; export declare const getId: (id: any, imp: any) => Id | null; export declare const getEnum: (em: any, imp: any) => Enum | null;