// generated by diplomat-tool
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";



/**
 * See the [Rust documentation for `LineBreakStrictness`](https://docs.rs/icu/2.1.1/icu/segmenter/options/enum.LineBreakStrictness.html) for more information.
 */
export class LineBreakStrictness {

    /** @internal */
    static fromValue(value: LineBreakStrictness | string): LineBreakStrictness;

    get value(): string;

    /** @internal */
    get ffiValue(): number;

    static Loose : LineBreakStrictness;
    static Normal : LineBreakStrictness;
    static Strict : LineBreakStrictness;
    static Anywhere : LineBreakStrictness;


    constructor(value: LineBreakStrictness | string );
}