import { BigintIsh, Rounding } from '../constants'; import { Fraction } from './Fraction'; export declare class Percent extends Fraction { /** * Converts a fraction to a percent * @param fraction the fraction to convert */ static toPercent(fraction: Fraction): Percent; /** * This boolean prevents a fraction from being interpreted as a Percent */ readonly isPercent = true; add(other: Fraction | BigintIsh): Percent; subtract(other: Fraction | BigintIsh): Percent; multiply(other: Fraction | BigintIsh): Percent; divide(other: Fraction | BigintIsh): Percent; toFixed(decimalPlaces?: number, format?: object, rounding?: Rounding): string; }