/// <reference types="react" />
export type MessageBoxProps = {
    title: string;
    body: string | JSX.Element;
    footer?: string | JSX.Element;
    canClose: boolean;
    onClose?: () => void;
};
export type MessageBoxPropsTyped = MessageBoxProps & {
    type: 'message';
};
export declare function MessageBox(props: {
    value: MessageBoxProps;
}): import("react/jsx-runtime").JSX.Element;
export default MessageBox;
