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