/** * Format a number as USD and include dollar-sign by default with two decimal places. */ declare function formatDollars(value: number | undefined, excludeSymbol?: boolean, decimalPlaces?: number): string; export { formatDollars };