export declare const ids: number[]; export type Id = typeof ids[number]; export declare const isId: (id: any) => id is number; export declare const NONE: number, VERY_LOW: number, LOW: number, MEDIUM: number, HIGH: number, VERY_HIGH: number, INTENSE: number; export declare const GQL_ENUM_MAPPING: { readonly [x: number]: "NONE" | "VERY_LOW" | "LOW" | "MEDIUM" | "HIGH" | "VERY_HIGH" | "INTENSE"; }; export declare const gqlEnums: ("NONE" | "VERY_LOW" | "LOW" | "MEDIUM" | "HIGH" | "VERY_HIGH" | "INTENSE")[]; export type Enum = typeof gqlEnums[number]; export declare const toGqlEnum: (id: Id) => "NONE" | "VERY_LOW" | "LOW" | "MEDIUM" | "HIGH" | "VERY_HIGH" | "INTENSE"; export declare const fromGqlEnum: (em: Enum) => number | undefined;