import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, 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 declare const ERROR_BTN_CLASS: string; export interface ButtonComponentChanges extends BasicUxElementComponentChanges { } export declare class ButtonComponent extends BasicUxElementComponent implements OnChanges, OnInit, AfterViewInit, OnDestroy { private cdr; private libConfig; label: string; title: string; name: string; disabled: boolean; labelClass: string; btnSuccess: boolean; btnLink: boolean; submit: boolean; angleRight: boolean; angleLeft: boolean; iconLeft: string; iconRight: string; focus: Observable; onclick: EventEmitter; setFocusOnError: boolean; buttonElement: ElementRef; buttonContent: ElementRef; visualizzaContent: boolean; constructor(cdr: ChangeDetectorRef, libConfig: NgInailCommonConfig); ngOnChanges(changes: ButtonComponentChanges): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; onClick($event: MouseEvent): void; private setFocus; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }