import { ReactElement, ReactNode } from 'react';
export interface MessageProps {
    title: string;
    subtitle?: string | ReactElement;
    link?: string;
    linkText?: string;
    children?: ReactNode;
    className?: string;
    otherSubtitle?: boolean;
}
export declare const Message: ({ title, subtitle, link, linkText, children, className, otherSubtitle, }: MessageProps) => ReactElement;
