export type formatNumberOptions = { symbol?: string; decimalPlaces?: number; padDecimalPlaces?: boolean; thousandsSeparator?: string; decimalSeparator?: string; symbolAfter?: boolean; }; export declare function formatNumber(input: number, opts?: formatNumberOptions): string | undefined; //# sourceMappingURL=formatNumber.d.ts.map