import { FC, InputHTMLAttributes, Ref } from 'react'; type InputSize = 'large' | 'default' | 'small'; export interface McInputProps extends InputHTMLAttributes { value?: string; onChange?: (event: React.FormEvent) => void; onBlur?: (event: React.FocusEvent) => void; onFocus?: (event: React.FocusEvent) => void; disabled?: boolean; placeholder?: string; ref?: Ref; className?: string; inputSize?: InputSize; } declare const Input: FC; export default Input;