import type { RoundingMode } from './fraction'; /** * Converts a fraction represented by `numerator` and `denominator` to a string representation with the specified number of significant digits. * @param numerator - The numerator of the fraction. * @param denominator - The denominator of the fraction. * @param significantDigits - The number of significant digits in the resulting string representation. * @param roundingMode - The rounding mode to be applied. * @returns The string representation of the fraction with the specified number of significant digits. */ export declare const toPrecision: ({ numerator, denominator, significantDigits, roundingMode, }: { numerator: bigint; denominator: bigint; significantDigits: number; roundingMode: RoundingMode; }) => string; //# sourceMappingURL=toPrecision.d.ts.map