import { NgClass } from '@angular/common'; import { ElementRef, EventEmitter } from '@angular/core'; import * as i0 from "@angular/core"; export declare class DokuAlert { private elementRef; protected readonly hostClasses: NgClass['ngClass']; /** * @default 'neutral' */ state: 'neutral' | 'success' | 'warning' | 'error'; /** * Whether alert can be dismissed. * @default false */ dismissible: boolean; /** * Whether alert should have full width. */ fullWidth: boolean; dismissed: EventEmitter; constructor(elementRef: ElementRef); protected get classes(): NgClass['ngClass']; dismiss(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }