import { ValueType, Nullable$1, Type } from "igniteui-react-core";
import { ST_Percentage } from "./ST_Percentage";
import { ST_ConformanceClass } from "./ST_ConformanceClass";
/**
 * @hidden
 */
export declare class ST_DecimalNumberOrPercent extends ValueType {
    static $t: Type;
    constructor(a: number, b: ST_Percentage, c?: boolean);
    constructor();
    constructor(a: number, ..._rest: any[]);
    private readonly b;
    private readonly a;
    equals(a: any): boolean;
    getHashCode(): number;
    toString(): string;
    k(a: ST_ConformanceClass): string;
    i(a: boolean): {
        ret: number;
        p0: boolean;
    };
    static j(a: string, b: ST_ConformanceClass): Nullable$1<ST_DecimalNumberOrPercent>;
    static c(a: ST_DecimalNumberOrPercent, b: ST_DecimalNumberOrPercent): boolean;
    static d(a: Nullable$1<ST_DecimalNumberOrPercent>, b: Nullable$1<ST_DecimalNumberOrPercent>): boolean;
    static e(a: ST_DecimalNumberOrPercent, b: ST_DecimalNumberOrPercent): boolean;
    static f(a: Nullable$1<ST_DecimalNumberOrPercent>, b: Nullable$1<ST_DecimalNumberOrPercent>): boolean;
}
