import * as i0 from '@angular/core'; import { SafeAny } from 'ngwr/cdk/types'; /** * @license * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/thekhegay/ngwr/blob/main/LICENSE */ type WrAlertType = 'info' | 'success' | 'warning' | 'danger'; /** * NGWR alert component. * Closeable component for feedback. * * {@tutorial} [How to use wr-alert]{@link http://ngwr.dev/docs/components/alert} */ declare class WrAlertComponent { title: string; message?: string; type: WrAlertType; closeable: boolean; protected readonly isClosed: i0.WritableSignal; get elClasses(): SafeAny; onClose(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; static ngAcceptInputType_closeable: unknown; } export { WrAlertComponent }; export type { WrAlertType };