import { InjectionKey, Ref } from 'vue'; import { default as MenuTree } from './menu'; import { MenuSizeT } from './types.ts'; export declare const menuInjectKey: InjectionKey<{ size: Ref; accordion: Ref; realValue: Ref; activeNodes: Ref>; realExpanded: Ref>; arrowPosition: Ref<'left' | 'right' | undefined>; menuTree: MenuTree; notifyTreeChange: () => void; updateModelValue: (val: string) => void; updateExpanded: (val: Array) => void; }>; export declare const subMenuInjectKey: InjectionKey<{ value: string; parentDepth: number; }>;