import { SyntheticEvent } from 'react'; type ActionMenuOption = { name: string; value?: number; currency?: string; }; export declare const useActionMenu: () => { actionMenuAnchor: HTMLElement | null; actionMenuOptions: ActionMenuOption[] | undefined; selectedActionMenuId: string | undefined; isActionMenuCheckMarkHighlighted: boolean; setActionMenuAnchor: import("react").Dispatch>; setActionMenuOptions: import("react").Dispatch>; setSelectedActionMenuId: import("react").Dispatch>; setIsActionMenuCheckMarkHighlighted: import("react").Dispatch>; handleCloseActionMenu: (e?: SyntheticEvent) => void; hideDropdown: () => void; showActionsDropdown: boolean; }; export {};