// generated by diplomat-tool import type { CollatorAlternateHandling } from "./CollatorAlternateHandling" import type { CollatorCaseFirst } from "./CollatorCaseFirst" import type { CollatorCaseLevel } from "./CollatorCaseLevel" import type { CollatorMaxVariable } from "./CollatorMaxVariable" import type { CollatorNumericOrdering } from "./CollatorNumericOrdering" import type { CollatorStrength } from "./CollatorStrength" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * See the [Rust documentation for `ResolvedCollatorOptions`](https://docs.rs/icu/2.1.1/icu/collator/options/struct.ResolvedCollatorOptions.html) for more information. */ export class CollatorResolvedOptions { get strength(): CollatorStrength; get alternateHandling(): CollatorAlternateHandling; get caseFirst(): CollatorCaseFirst; get maxVariable(): CollatorMaxVariable; get caseLevel(): CollatorCaseLevel; get numeric(): CollatorNumericOrdering; /** @internal */ constructor(); }