import { OnInit, ViewContainerRef, ElementRef, EventEmitter } from '@angular/core'; import { ThfWidgetBaseComponent } from '@totvs/thf-core/components/thf-widget-base'; /** * @extends ThfWidgetBaseComponent * * @example * * * * * * * * * * * * * * * * * * * */ export declare class ThfWidgetComponent extends ThfWidgetBaseComponent implements OnInit { /** Função chamada ao clicar no ícone de configuração */ setting?: EventEmitter<{}>; elBackground: ElementRef; elBody: ElementRef; private parentRef; constructor(viewRef: ViewContainerRef); ngOnInit(): void; runPrimaryAction(): void; runSecundaryAction(): void; settingOutput(): void; openHelp(): void; isTypeof(object: any, type: any): boolean; }