/**
 * Message component for showing error or success messages for when the connection
 * state changes
 */
export declare class MessageComponent {
    /**
     * Title of the message to display
     */
    title: string;
    /**
     * Content of the message to display
     */
    message: string;
    /**
     * Message type. Can be 'success' or 'error'
     */
    type: string;
}
