import { ComputedRef, Ref } from 'vue'; import { CascaderOptionInfo } from '../interface'; export declare const useSelectedPath: (options: Ref, { optionMap, filteredLeafOptions, showSearchPanel, expandChild, }: { optionMap: Map; filteredLeafOptions: ComputedRef; showSearchPanel?: ComputedRef | undefined; expandChild: Ref; }) => { activeKey: Ref; activeOption: ComputedRef; selectedPath: Ref; displayColumns: ComputedRef; setActiveKey: (key?: string | undefined) => void; setSelectedPath: (key?: string | undefined) => void; getNextActiveNode: (direction: 'next' | 'preview') => CascaderOptionInfo | undefined; };