type CalculatedDTO = { value: number | null; step?: number; action?: 'incr' | 'decr'; }; type ValidationDTO = { value: number; min?: number; max?: number; }; export declare const getMinMaxValidatedValue: ({ value, min, max }: ValidationDTO) => number; export declare const getCalculatedValue: ({ value: initialValue, step, action }: CalculatedDTO) => number; export declare const getDecimalLength: (value: number | null) => number; export declare const getSeparatedValue: (value: number | null, formatOptions?: Intl.NumberFormatOptions, locale?: string) => string | null; export {}; //# sourceMappingURL=numericInputCalculations.d.ts.map