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