import type { RoundingMode } from './fraction'; /** * Converts a fraction represented by `numerator` and `denominator` to a fixed-point decimal representation with the specified number of decimal places and rounding mode. * @param numerator - The numerator of the fraction. * @param denominator - The denominator of the fraction. * @param decimalPlaces - The number of decimal places in the fixed-point decimal representation. * @param roundingMode - The rounding mode to be applied. * @param trailingZeros - Indicates whether trailing zeros should be included in the result. * @returns The fixed-point decimal representation of the fraction as a string. */ export declare const toFixed: ({ numerator, denominator, decimalPlaces, roundingMode, trailingZeros, }: { numerator: bigint; denominator: bigint; decimalPlaces: number; roundingMode: RoundingMode; trailingZeros: boolean; }) => string; //# sourceMappingURL=toFixed.d.ts.map