import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, OnInit } from '@angular/core'; import { BasicUxElementComponent, BasicUxElementComponentChanges } from "../../basic-ux-element.component"; import { Observable } from "rxjs"; import { NgInailCommonConfig } from "../../../../ng-inail-common.config"; import * as i0 from "@angular/core"; export type FeedbackTypes = 'ERROR' | 'SUCCESS' | 'WARNING'; export interface FeedbackComponentChanges extends BasicUxElementComponentChanges { } export declare class FeedbackComponent extends BasicUxElementComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy { private cdr; private libConfig; errorType: FeedbackTypes; successType: FeedbackTypes; warningType: FeedbackTypes; mainMessage: ElementRef; message: string; type: FeedbackTypes; globalFeedback: boolean; showIcon: boolean; contentTitle: string; contentClass: string; details: string[]; detailsAsList: boolean; detailsAsOrderedList: boolean; focus: Observable; autoCatchFocus: boolean; scrollToFocus: boolean; labelFeedback: boolean; feedbackContent: ElementRef; hasContent: () => boolean; constructor(cdr: ChangeDetectorRef, libConfig: NgInailCommonConfig); ngOnChanges(changes: FeedbackComponentChanges): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; private setFocus; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class Feedback { type: FeedbackTypes; message: string; contentTitle: string; details?: string[]; constructor(type: FeedbackTypes, msg: string, details?: string[], contentTitle?: string); }