UNPKG

@cainiaofe/cn-ui-m

Version:
10 lines (9 loc) 497 B
import React from 'react'; import { ICnCascaderMultiplySelectItem } from '../../types'; import { type CascaderListItemProps } from './cascader-list-item'; interface CascaderListProps extends Pick<CascaderListItemProps, 'value' | 'onClick' | 'loadData' | 'multiple'> { options: ICnCascaderMultiplySelectItem[]; handleSelect: (checked: boolean, children: ICnCascaderMultiplySelectItem) => void; } export declare function CascaderList(props: CascaderListProps): React.JSX.Element; export {};