import { FC, ReactNode } from 'react'; interface InstrumentoEmailStatusModalProps { isOpen: boolean; onClose: () => void; message: ReactNode; title?: string; secondaryActionLabel?: string; onSecondaryAction?: () => void | Promise; secondaryActionDisabled?: boolean; } declare const InstrumentoEmailStatusModal: FC; export default InstrumentoEmailStatusModal;