import { CascaderOption } from './typings'; export interface CascaderPanelProps { /** * The id of the currently active (navigating) option. */ activeId?: string; /** * The id of the keyboard-focused option in this panel. */ focusedId?: string; /** * The max height for the panel. */ maxHeight?: number | string; /** * Called when an option is clicked. * `isLeaf` is true if the option has no children. */ onSelect: (option: CascaderOption, isLeaf: boolean) => void; /** * The options to render in this panel. */ options: CascaderOption[]; /** * The id of the confirmed selected option at this level. */ selectedId?: string; } export default function CascaderPanel({ activeId, focusedId, maxHeight, onSelect, options, selectedId, }: CascaderPanelProps): import("react/jsx-runtime").JSX.Element;