UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

8 lines (7 loc) 376 B
import * as React from 'react'; import type { PickType } from 'rc-cascader/lib/Panel'; import type { CascaderProps } from '.'; export type PanelPickType = Exclude<PickType, 'checkable'> | 'multiple' | 'rootClassName'; export type CascaderPanelProps = Pick<CascaderProps, PanelPickType>; declare const CascaderPanel: React.FC<CascaderPanelProps>; export default CascaderPanel;