import React from 'react';
import { InputRef } from './Input';
export interface SearchProps {
    /** 搜索回调，回车/点击搜索按钮触发 */
    onSearch?: (value: string) => void;
}
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<SearchProps & import("./Input").DefinedInputProps & Omit<React.InputHTMLAttributes<HTMLInputElement>, keyof import("./Input").DefinedInputProps> & React.RefAttributes<InputRef>>>;
export default _default;
