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



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

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

    get value(): string;

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

    static Space : CollatorMaxVariable;
    static Punctuation : CollatorMaxVariable;
    static Symbol : CollatorMaxVariable;
    static Currency : CollatorMaxVariable;


    constructor(value: CollatorMaxVariable | string );
}