import type { Ref } from 'vue'; import type { DataEntity } from '../../../vc-tree/src/interface'; import type { DefaultOptionType, InternalFieldNames } from '../Cascader'; export interface OptionsInfo { keyEntities: Record; pathKeyEntities: Record; } /** Lazy parse options data into conduct-able info to avoid perf issue in single mode */ declare const _default: (options: Ref, fieldNames: Ref) => import("vue").ComputedRef; export default _default;