// generated by diplomat-tool import type { DataError } from "./DataError" import type { DataProvider } from "./DataProvider" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** See the [Rust documentation for `ComposingNormalizer`](https://docs.rs/icu/latest/icu/normalizer/struct.ComposingNormalizer.html) for more information. */ export class ComposingNormalizer { get ffiValue(): pointer; static createNfc(provider: DataProvider): ComposingNormalizer; static createNfkc(provider: DataProvider): ComposingNormalizer; normalize(s: string): string; isNormalized(s: string): boolean; isNormalizedUpTo(s: string): number; }