import React from 'react'; import { NumericFormatProps, ChangeMeta, InputAttributes, NumberFormatBaseProps } from './types'; export declare function format(numStr: string, props: NumericFormatProps): string; export declare function removeFormatting(value: string, changeMeta: ChangeMeta, props: NumericFormatProps): string; export declare function getCaretBoundary(formattedValue: string, props: NumericFormatProps): boolean[]; export declare function useNumericFormat(props: NumericFormatProps): NumberFormatBaseProps; export default function NumericFormat(props: NumericFormatProps): React.ReactElement;