import { ReactNode } from 'react'; import type { ProTreeModalFieldNamesType, ProTreeModalDataType } from '../propsType'; interface CascaderProps { dataSource: ProTreeModalDataType[]; checkedValues?: any[]; showCodeName?: boolean; fieldNames: ProTreeModalFieldNamesType; searchStr?: string; disabled?: boolean; handleOnChange?: (e: any, value: string) => void; optionRender?: (item: any, searchStr: string) => string | ReactNode; } declare const Cascader: (props: CascaderProps) => import("react/jsx-runtime").JSX.Element; export default Cascader;