import { EventEmitter } from '@angular/core'; import { ComponentType } from '../../../model/components/component-type.type'; import { ComponentVariant } from '../../../model/components/component-variant.type'; import { ComponentSize } from '../../../model/components/component-size.type'; import * as i0 from "@angular/core"; /** * The alert component is responsible to show alerts for diverse elements. Including `FormErrorComponent` among others. */ export declare class AlertComponent { dismissable: boolean; fullSize: boolean; text: string; type: ComponentType; variant: ComponentVariant; size: ComponentSize; withIcon: boolean; dismiss: EventEmitter; get icon(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }