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



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

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

    get value(): string;

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

    static Open : BidiPairedBracketType;
    static Close : BidiPairedBracketType;
    static None : BidiPairedBracketType;


    constructor(value: BidiPairedBracketType | string );
}