import { Rational } from "./Rational.mjs";
interface CohortAndQuantum {
    cohort: "0" | "-0" | Rational;
    quantum: number;
}
export declare class Decimal {
    readonly cohort: "0" | "-0" | Rational;
    readonly quantum: number;
    constructor(x: string | CohortAndQuantum);
    negate(): Decimal;
    coefficient(): bigint;
    isNegative(): boolean;
}
export {};
