import type { TextInputProps } from "../TextInput/TextInput"; export interface DebouncedInputProps extends Omit { onChange: (value: string) => void; /** * 延迟的毫秒数 * @default 500 */ wait?: number; } /** ref属性会转发至内部的input元素 */ export declare function DebouncedInput(props: DebouncedInputProps): import("react").JSX.Element;