import type { stateChangeCause } from "../stateChangeTypes"; export type menuActionType = "setCurrentInteractedItem" | "resetMenu" | "openMenu" | "closeMenu" | "closeCascadingMenu" | "setFlipped"; export type menuAction = { type: menuActionType; cause: stateChangeCause; flipped?: boolean; highlightedItemIndex?: number; targetId: string; }; export declare const CascadingMenuAction: Record;