// generated by diplomat-tool import type { CodePointSetBuilder } from "./CodePointSetBuilder" import type { DataError } from "./DataError" import type { DataProvider } from "./DataProvider" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** See the [Rust documentation for `CaseMapCloser`](https://docs.rs/icu/latest/icu/casemap/struct.CaseMapCloser.html) for more information. */ export class CaseMapCloser { get ffiValue(): pointer; static create(provider: DataProvider): CaseMapCloser; addCaseClosureTo(c: codepoint, builder: CodePointSetBuilder): void; addStringCaseClosureTo(s: string, builder: CodePointSetBuilder): boolean; }