/// import React from 'react'; import { KeygenResult, ResultItem } from '../@types/common'; import { TreeSelectPropsWithTied, TreeSelectPropsWithFilter, FilterFormType } from './Props'; interface FilterState { innerFilter?: (data: Item) => boolean; innerData?: Item[]; filterText: string; } declare const _default: (Origin: React.ComponentType>) => { new (props: TreeSelectPropsWithFilter): { resultCache: Map>; timer: NodeJS.Timer; getResultByValues(): ResultItem[]; handleFilter(text: string, from?: FilterFormType): void; render(): JSX.Element; $isMounted: boolean; forceUpdateTimer: NodeJS.Timeout; componentDidMount(): void; componentWillUnmount(): void; setState(...args: any[]): void; forceUpdate(): void; context: any; readonly props: Readonly> & Readonly<{ children?: React.ReactNode; }>; state: Readonly>; refs: { [key: string]: React.ReactInstance; }; shouldComponentUpdate?(nextProps: Readonly>, nextState: Readonly>, nextContext: any): boolean; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly>, prevState: Readonly>): any; componentDidUpdate?(prevProps: Readonly>, prevState: Readonly>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly>, nextState: Readonly>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly>, nextState: Readonly>, nextContext: any): void; }; defaultProps: { data: never[]; filterDelay: number; showHitDescendants: boolean; }; contextType?: React.Context | undefined; }; export default _default;