import * as React from 'react'; import type { DefaultOptionType, SingleValueType } from '../Cascader'; export declare const FIX_LABEL = "__cascader_fix_label__"; export interface ColumnProps { prefixCls: string; multiple?: boolean; options: DefaultOptionType[]; /** Current Column opened item key */ activeValue?: React.Key; /** The value path before current column */ prevValuePath: React.Key[]; onToggleOpen: (open: boolean) => void; onSelect: (valuePath: SingleValueType, leaf: boolean) => void; onActive: (valuePath: SingleValueType) => void; checkedSet: Set; loadingKeys: React.Key[]; isSelectable: (option: DefaultOptionType) => boolean; searchValue?: string; titleIndex?: number; } export default function Column({ prefixCls, options, multiple, activeValue, prevValuePath, titleIndex, onToggleOpen, onSelect, onActive, checkedSet, loadingKeys, isSelectable, searchValue }: ColumnProps): import("react/jsx-runtime").JSX.Element;