import type { TextFieldSliderProps } from '../TextFieldSlider.types'; type FormatterArgs = { decimalScale?: number; thousandsGroupStyle?: 'thousand' | 'lakh' | 'wan' | 'none'; thousandSeparator?: boolean | string; decimalSeparator?: string; fixedDecimalScale?: boolean; allowNegative?: boolean; allowLeadingZeros?: boolean; }; export declare const createFormatterArgs: (props: Pick, options?: Partial) => FormatterArgs; export declare const createNormalizedFormatterArgs: (props: Pick) => FormatterArgs; export {}; //# sourceMappingURL=index.d.ts.map