import { EventEmitter } from '@angular/core';
/**
*
* Component for Card-Box element with Inputs:
* Usage
* @Input() title: Title of Box
* @Input() icon: Icon displayed on the left of the element
* @Input() info: The Status displayed on user
* @Input() message: Explanation of the status
* @Input() extraMessage: Some extra guidence
* @Input() actionButton: Text displayed as Text in button
* @Input() actionText: Text displayed as an action
* @Input() disableBut: Disable button
* @export
*/
export declare class MsgboxComponent {
title: string;
icon: string;
info: string;
message: string;
extraMessage: string;
actionButton: string;
actionText: string;
disableBut: boolean;
buttonClass: string;
action: EventEmitter;
btnClicked: boolean;
clicked(): void;
}