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



/**
 * The sign of a Decimal, as shown in formatting.
 *
 * See the [Rust documentation for `Sign`](https://docs.rs/fixed_decimal/0.7.0/fixed_decimal/enum.Sign.html) for more information.
 */
export class DecimalSign {

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

    get value(): string;

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

    static None : DecimalSign;
    static Negative : DecimalSign;
    static Positive : DecimalSign;


    constructor(value: DecimalSign | string );
}