/** * Formats a number as a float with the specified number of decimal places. * * By default, it will use two decimal places and the US locale and group numbers. * * If `parentheticalNegatives` is true, negative numbers will be wrapped in parentheses. */ declare function formatFloat(value: number, decimalPlaces?: number, useGrouping?: boolean, parentheticalNegatives?: boolean): string; export { formatFloat };