import React, { ReactNode, MouseEvent, FormEvent, KeyboardEvent } from 'react'; import { BaseProps } from '../_utils/props'; export declare type InputSizes = 'sm' | 'md' | 'lg'; export interface InputProps extends BaseProps { clearable?: boolean; prefix?: ReactNode; suffix?: ReactNode; value?: string; defaultValue?: string; onChange?: (value: any, event: FormEvent | MouseEvent) => void; onEnterPress?: (event: KeyboardEvent) => void; onKeyDown?: React.KeyboardEventHandler; size?: InputSizes; disabled?: boolean; [prop: string]: any; } declare const Input: React.FC & { Group?: any; Addon?: any; }; export default Input;