import { SyntheticEvent } from 'react'; import { CurrencyCodes } from '../../types/index.js'; export interface ActionMenuProps { anchorEl: HTMLElement | null; initialAmount: number; currency: CurrencyCodes; options?: Array<{ name: string; value?: number; currency?: string; }>; onConfirm?: (amount: number, currency: string) => void; handleClose: (e?: SyntheticEvent) => void; isCheckMarkHighlighted?: boolean; }