import { SyntheticEvent } from 'react'; import { CurrencyCodes } from '../../types/index.js'; interface ActionMenuItemProps { showWarning?: boolean; selectedCurrency: CurrencyCodes; onAmountChange: (value?: string) => void; amount: string | undefined; currencyConfig: Record; toggleDropDown: (event: SyntheticEvent) => void; showDropDown: boolean; showDropdownIcon: boolean; disabled?: boolean; isLoading?: boolean; } declare function ActionMenuItem({ showWarning, selectedCurrency, onAmountChange, amount, currencyConfig, toggleDropDown, showDropDown, showDropdownIcon, disabled, isLoading, }: ActionMenuItemProps): import("react").JSX.Element; export default ActionMenuItem;