import { BigDecimal } from "./types"; /** * Formats a BigInt value to a string with a given number of decimal places. * * @param {BigDecimal} The amount to format * @returns {string} The formatted string. */ export declare function formatUnits({ value, decimals }: BigDecimal): string;