import React from "react";
interface MessageProps {
    type: "error" | "success";
    title: string;
    actionComponent?: JSX.Element;
    children?: JSX.Element | JSX.Element[];
}
declare const Message: React.FC<MessageProps>;
export default Message;
