import React, { ReactNode } from 'react'; import { InputProps as BaseInputProps } from 'antd/lib/input'; import { Control, ControllerRenderProps } from 'react-hook-form'; export interface NumberFormatInputProps extends Pick { className?: string; errorMsg?: string; control: Control; name: string; suffix?: ReactNode; prefix?: ReactNode; withCount?: boolean; label?: string; previewText?: string; suffixCls?: string; render?: (field: ControllerRenderProps) => React.ReactElement; cy?: { wrapper?: string; input?: string; message?: string; border?: string; }; } declare const NumberFormatInput: React.FC; export default NumberFormatInput;