import { FC } from 'react'; export interface Action { id: string; label: string; onClick: () => void; disabled?: boolean; loading?: boolean; variant?: "text" | "contained" | "outlined"; } interface Props { onClose?: () => void; actions: Action[]; modalClassName?: string; } declare const Modal: FC; export default Modal;