import React from "react";
declare function MessagePopup({ handleDone, type, onTryAgain, onClose, customContent, transactionClick, }: {
    handleDone: () => void;
    type: "success" | "error";
    onTryAgain?: () => void;
    onClose?: () => void;
    customContent?: React.ReactNode;
    transactionClick?: () => void;
}): React.JSX.Element;
export default MessagePopup;
