/** * 结果树(暂时不支持结果排序) */ import React from 'react'; import type { Option, Options } from 'jamis-core'; import type { ResultTreeListProps } from '../types'; export interface ItemRenderStates { index: number; disabled?: boolean; onChange: (value: any, name: string) => void; } interface ResultTreeListState { inputValue?: string; treeOptions: Options; } export declare class BaseResultTreeList extends React.Component { static itemRender: (option: any) => JSX.Element; static defaultProps: Partial; state: ResultTreeListState; static getDerivedStateFromProps(props: ResultTreeListProps): { treeOptions: Option[]; }; deleteTreeChecked: (option: Option) => void; search: (inputValue: string) => void; renderTree(): JSX.Element; render(): JSX.Element; } export default BaseResultTreeList;