import { ButtonProps } from '@mui/material/Button'; interface CurrencyDialogProps { closeAriaLabel: string; content?: string; inputLabel?: string; inputValue?: string; isOpen: boolean; handleInputChange?: (value: string) => void; handleModalClose: () => void; handlePrimaryAction: () => void; handleSecondaryAction?: () => void; primaryColor?: ButtonProps['color']; primaryText: string; secondaryColor?: ButtonProps['color']; secondaryText?: string; title: string; } declare const CurrencyDialog: ({ closeAriaLabel, content, inputLabel, inputValue, isOpen, handleInputChange, handleModalClose, handlePrimaryAction, handleSecondaryAction, primaryColor, primaryText, secondaryColor, secondaryText, title, }: CurrencyDialogProps) => import("react/jsx-runtime").JSX.Element; export default CurrencyDialog;