import * as React from 'react'; import type { CascaderProps, InternalFieldNames, DefaultOptionType, SingleValueType } from './Cascader'; export interface CascaderContextProps { options: CascaderProps['options']; optionsTitle: Array; fieldNames: InternalFieldNames; values: SingleValueType[]; halfValues: SingleValueType[]; changeOnSelect?: boolean; onSelect: (valuePath: SingleValueType) => void; checkable?: boolean | React.ReactNode; dropdownPrefixCls?: string; loadData?: (selectOptions: DefaultOptionType[]) => void; expandTrigger?: 'hover' | 'click'; expandIcon?: React.ReactNode; loadingIcon?: React.ReactNode; loading?: boolean; dropdownMenuColumnStyle?: React.CSSProperties; menuWidth?: string | number; menuMaxHight?: number; } declare const CascaderContext: React.Context; export default CascaderContext;