// generated by diplomat-tool import type { DataError } from "./DataError" import type { DataProvider } from "./DataProvider" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** A type capable of looking up General Category mask values from a string name. * *See the [Rust documentation for `PropertyParser`](https://docs.rs/icu/latest/icu/properties/struct.PropertyParser.html) for more information. * *See the [Rust documentation for `GeneralCategory`](https://docs.rs/icu/latest/icu/properties/props/struct.GeneralCategory.html) for more information. */ export class GeneralCategoryNameToMaskMapper { get ffiValue(): pointer; getStrict(name: string): number; getLoose(name: string): number; static load(provider: DataProvider): GeneralCategoryNameToMaskMapper; }