import { DataNode } from 'antd/lib/tree'; import { ReactNode } from 'react'; import { ISearchLabel } from '../../typings'; export declare type ITreeSearchPageRenderProps = (page: number, children: DataNode[]) => string | ReactNode; export declare type ITreeSearchItemRenderProps = (label: ISearchLabel) => string | ReactNode;