import React from 'react'; export interface ProTreeSearcherProps { /** 前缀 */ prefix?: React.ReactNode; /** 占位符 */ placeholder?: string; /** 值 */ value?: string; /** 实时搜索 */ realtime?: boolean; /** 防抖等待时间 */ debounceWait?: number; /** 值变化 */ onChange?: (value: string) => void; /** 搜索 */ onSearch?: (value: string) => void; } export default function Searcher(props: ProTreeSearcherProps): React.JSX.Element;