import { type InputHTMLAttributes } from 'react';
import { type InputProps } from './input';
export type ValueType = InputHTMLAttributes['value'] | bigint;
export interface SearchProps extends InputProps {
/**
* 防抖搜索回调,与 `onChange` 的区别是,`onSearch` 不会在输入拼音时触发。
* @param value 搜索值
* @returns 无返回值
*/
onSearch?: (value: string) => void;
/**
* 防抖时间
* @default 300
*/
debounceWait?: number;
}
/**
* 搜索输入框
* @param param0
* @returns
*/
export declare const Search: React.FC;