import { Key } from '@react-types/shared'; import { TreeState } from 'react-stately/useTreeState'; interface MenuData { onClose?: () => void; onAction?: (key: Key) => void; shouldUseVirtualFocus?: boolean; } export declare const menuData: WeakMap, MenuData>; export {};