import { Service, Options } from 'ahooks/lib/useRequest/src/types'; import { CascaderProps } from 'antd'; interface RequestProps { service: Service; options?: Options; } export type Props = CascaderProps & { useRequest?: RequestProps; otherProps?: any; isView?: boolean; dataSource?: T[]; }; declare const ProCascader: (props: Props) => JSX.Element; export default ProCascader;