// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * See the [Rust documentation for `Strength`](https://docs.rs/icu/2.1.1/icu/collator/options/enum.Strength.html) for more information. */ export class CollatorStrength { /** @internal */ static fromValue(value: CollatorStrength | string): CollatorStrength; get value(): string; /** @internal */ get ffiValue(): number; static Primary : CollatorStrength; static Secondary : CollatorStrength; static Tertiary : CollatorStrength; static Quaternary : CollatorStrength; static Identical : CollatorStrength; constructor(value: CollatorStrength | string ); }