import type { ExtractPropTypes, PropType, VNodeChild } from 'vue'; import type { Key } from 'treemate'; export declare const useMenuChildProps: { readonly internalKey: { readonly type: PropType; readonly required: true; }; readonly root: BooleanConstructor; readonly isGroup: BooleanConstructor; readonly level: { readonly type: NumberConstructor; readonly required: true; }; readonly title: PropType VNodeChild)>; readonly extra: PropType VNodeChild)>; }; export type UseMenuChildProps = ExtractPropTypes;