type JsonValue = string | number | boolean | null | JsonObject | JsonArray; type JsonObject = { [Key in string]?: JsonValue; }; type JsonArray = JsonValue[]; declare const version: string; declare const allNamedEntities: JsonObject; declare const brokenNamedEntities: JsonObject; declare const entStartsWith: JsonObject; declare const entEndsWith: JsonObject; declare const entStartsWithCaseInsensitive: JsonObject; declare const entEndsWithCaseInsensitive: JsonObject; declare const uncertain: JsonObject; declare const allNamedEntitiesSetOnly: Set; declare const allNamedEntitiesSetOnlyCaseInsensitive: Set; declare function decode(ent: string): string | null; declare const minLength = 2; declare const maxLength = 31; export { allNamedEntities, allNamedEntitiesSetOnly, allNamedEntitiesSetOnlyCaseInsensitive, brokenNamedEntities, decode, entEndsWith, entEndsWithCaseInsensitive, entStartsWith, entStartsWithCaseInsensitive, maxLength, minLength, uncertain, version, };