import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnInit } from '@angular/core'; import { BasicUxElementComponent, BasicUxElementComponentChanges } from "../../basic-ux-element.component"; import { NgInailCommonConfig } from "../../../../ng-inail-common.config"; import * as i0 from "@angular/core"; export interface PopoverComponentChanges extends BasicUxElementComponentChanges { } export declare class PopoverComponent extends BasicUxElementComponent implements OnChanges, OnInit, AfterViewInit { private cdr; private libConfig; openButton: ElementRef; popover: ElementRef; show: boolean; iconClass: string; buttonTitle: string; header: string; content: string; popoverLeft: number; popoverTop: number; constructor(cdr: ChangeDetectorRef, libConfig: NgInailCommonConfig); ngOnChanges(changes: PopoverComponentChanges): void; ngOnInit(): void; onClick(b?: boolean): void; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }