import * as React from 'react'; import type { CascaderProps, DefaultOptionType } from './Cascader'; export declare type PickType = 'value' | 'defaultValue' | 'changeOnSelect' | 'onChange' | 'options' | 'prefixCls' | 'checkable' | 'fieldNames' | 'showCheckedStrategy' | 'loadData' | 'expandTrigger' | 'expandIcon' | 'loadingIcon' | 'className' | 'style' | 'direction' | 'notFoundContent'; export declare type PanelProps = Pick, PickType>; export default function Panel(props: PanelProps): React.JSX.Element;