import { ReactNode } from 'react'; import type { ProTreeFieldNamesType } from '../propsType'; interface ListProps { disabled?: boolean; checkedValues?: any[]; treeData: any[]; searchStr?: string; showCodeName?: boolean; fieldNames: ProTreeFieldNamesType; mode?: 'render' | 'view'; handleOnChange?: (e: any, value: string) => void; handleFilterClose?: (code: string) => void; optionRender?: (item: any, searchStr?: string) => string | ReactNode; } declare function List(props: ListProps): import("react/jsx-runtime").JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;