/// import { CurrencyCodes } from '../../types/index.js'; interface IOptions { name: string; value?: number; currency?: string; } interface ActionMenuDropDownProps { menuAnchor: (EventTarget & Element) | undefined; showDropDown: boolean; selectedCurrency: CurrencyCodes; options: IOptions[]; closeDropdown: () => void; handleSelectOption?: (optionCharge?: number, optionCurrency?: CurrencyCodes) => void; } declare function ActionMenuDropDown({ menuAnchor, showDropDown, selectedCurrency, options, closeDropdown, handleSelectOption }: ActionMenuDropDownProps): import("react").JSX.Element | null; export default ActionMenuDropDown;