import type { InputProps as AntdInputProps, InputRef as AntdInputRef } from 'antd'; export type InputRef = AntdInputRef; export type InputProps = AntdInputProps & React.RefAttributes & { label?: string | { text: string; className?: string; }; wrapperClassName?: string; errorMessage?: string; isNumber?: boolean; }; export declare const Input: React.FC;