import type { Ref } from 'vue'; import type { CascaderNode } from './type'; export declare const useSelectedPath: (dataTree: Ref, { nodesMap, expandChild }: { nodesMap: Map; expandChild: Ref; }) => { renderColumns: import("vue").ComputedRef; selectedPath: Ref; setSelectedPath: (nodeKey?: string) => void; activeKey: Ref; setActiveKey: (nodeKey?: string) => void; };