import React from 'react';
import { ICnCascaderSelectItem } from '../../types';
import { type CascaderListItemProps } from './cascader-list-item';
interface CascaderListProps extends Pick<CascaderListItemProps, 'value' | 'onClick' | 'loadData'> {
    options: ICnCascaderSelectItem[];
}
export declare function CascaderList(props: CascaderListProps): React.JSX.Element;
export {};
