// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; // Base enumerator definition /** See the [Rust documentation for `SentenceBreak`](https://docs.rs/icu/latest/icu/properties/props/struct.SentenceBreak.html) for more information. */ export class SentenceBreak { constructor(value : SentenceBreak | string); get value() : string; get ffiValue() : number; static Other : SentenceBreak; static ATerm : SentenceBreak; static Close : SentenceBreak; static Format : SentenceBreak; static Lower : SentenceBreak; static Numeric : SentenceBreak; static OLetter : SentenceBreak; static Sep : SentenceBreak; static Sp : SentenceBreak; static STerm : SentenceBreak; static Upper : SentenceBreak; static Cr : SentenceBreak; static Extend : SentenceBreak; static Lf : SentenceBreak; static SContinue : SentenceBreak; toInteger(): number; static fromInteger(other: number): SentenceBreak | null; }