import './index.less';
import RcInput from 'rc-input';
import React from 'react';
export interface InputSearchProps extends React.ComponentProps<typeof RcInput> {
    style?: React.CSSProperties;
    allowClear?: boolean;
    placeholder?: string;
    enterButton?: string | true;
    size?: 'large' | 'middle' | 'small';
    value?: string;
    onChange?: React.ChangeEventHandler<HTMLInputElement>;
    onSearch?: (value: string) => void;
}
export interface InputProps extends React.ComponentProps<typeof RcInput> {
}
declare const Input: {
    Search: React.MemoExoticComponent<(props: InputSearchProps) => React.JSX.Element>;
} & React.NamedExoticComponent<InputProps> & {
    readonly type: (props: InputProps) => React.JSX.Element;
};
export default Input;
