import { EventEmitter } from '@angular/core'; import * as i0 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 guidance * @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 | undefined; icon: string | undefined; info: string | undefined; message: string | undefined; extraMessage: string | undefined; actionButton: string | undefined; actionText: string | undefined; disableBut: boolean | undefined; buttonClass: string; action: EventEmitter; btnClicked: boolean | undefined; clicked(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }