import { ReactNode } from 'react'; import { FieldNamesType } from '../propsType'; interface ListProps { disabled?: boolean; checkedValues?: any[]; treeData: any[]; searchStr?: string; showCodeName?: boolean; fieldNames: FieldNamesType; 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): JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;