import { TransformNumberOptions } from "../utils/transformNumber"; type FormatterOptions = Omit & { maxDecimals?: number; }; export declare const useNumberFormatter: (rawValue: string | undefined, options: FormatterOptions) => { displayValue: string; transformOpts: { separatorCount: number; separatorChar: string; decimalChar: string | undefined; locale: string; showZero: boolean; maxDecimals: number | undefined; }; }; export {}; //# sourceMappingURL=useNumberFormatter.d.ts.map