import { ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { AbstractControl } from '@angular/forms'; import { ToolTipMessageType } from './tooltip-message-type.enum'; import * as i0 from "@angular/core"; export declare class TooltipMsgError implements OnInit, OnChanges, OnDestroy { private cdr; private _El; width: string; control: AbstractControl | null; messageType: ToolTipMessageType; message: any; iconElId: string; messageElId: string; isLeft: boolean; showDetails: boolean; tooltipIcon: HTMLElement; tooltipMessage: HTMLElement; iconStyle: any; isDictionary: boolean; onScrollY(): void; constructor(cdr: ChangeDetectorRef, _El: ElementRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; checkErrorType(): void; getThemedMessageStyle(): { 'background-color': string; 'font-weight': string; color: string; border: string; 'border-left': string; }; setMessageStyle(): void; get messageStyle(): { 'background-color'?: string; 'font-weight'?: string; color?: string; border?: string; 'border-left'?: string; }; setIconStyle(): void; onMouseEnter(): void; onMouseLeave(): void; getDirection(element: any): void; generateRandomString(): string; formatValue(value: any): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }