// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * See the [Rust documentation for `CollationCaseFirst`](https://docs.rs/icu/2.1.1/icu/collator/preferences/enum.CollationCaseFirst.html) for more information. */ export class CollatorCaseFirst { /** @internal */ static fromValue(value: CollatorCaseFirst | string): CollatorCaseFirst; get value(): string; /** @internal */ get ffiValue(): number; static Off : CollatorCaseFirst; static Lower : CollatorCaseFirst; static Upper : CollatorCaseFirst; constructor(value: CollatorCaseFirst | string ); }