// generated by diplomat-tool import type { DataError } from "./DataError" import type { DataProvider } from "./DataProvider" import type { Locale } from "./Locale" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** A set of "exemplar characters" for a given locale. * *See the [Rust documentation for `locale`](https://docs.rs/icu/latest/icu/locale/index.html) for more information. * *See the [Rust documentation for `ExemplarCharacters`](https://docs.rs/icu/latest/icu/locale/exemplar_chars/struct.ExemplarCharacters.html) for more information. * *See the [Rust documentation for `ExemplarCharactersBorrowed`](https://docs.rs/icu/latest/icu/locale/exemplar_chars/struct.ExemplarCharactersBorrowed.html) for more information. */ export class ExemplarCharacters { get ffiValue(): pointer; containsStr(s: string): boolean; contains(cp: codepoint): boolean; static createMain(locale: Locale): ExemplarCharacters; static createMainWithProvider(provider: DataProvider, locale: Locale): ExemplarCharacters; static createAuxiliary(locale: Locale): ExemplarCharacters; static createAuxiliaryWithProvider(provider: DataProvider, locale: Locale): ExemplarCharacters; static createPunctuation(locale: Locale): ExemplarCharacters; static createPunctuationWithProvider(provider: DataProvider, locale: Locale): ExemplarCharacters; static createNumbers(locale: Locale): ExemplarCharacters; static createNumbersWithProvider(provider: DataProvider, locale: Locale): ExemplarCharacters; static createIndex(locale: Locale): ExemplarCharacters; static createIndexWithProvider(provider: DataProvider, locale: Locale): ExemplarCharacters; }