import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { ContainerTabsModel } from '../../models/container/container-tabs.model'; import * as i0 from "@angular/core"; export declare class ContentContainerComponent implements OnInit, OnChanges { private _currentTab?; /** Parâmetro secreto que informa se o componente deve adotar comportamento/visual igual exibido no portal de documentação */ documentation: import("@angular/core").InputSignal<{ use: boolean; theme: "dark" | "light"; }>; tabs?: string[]; advancedTabs?: ContainerTabsModel[]; containerTitle?: string; useBorder?: boolean; get currentTab(): string | undefined; set currentTab(value: string | undefined); onChangeTab: EventEmitter; currentContent: number; isTabsString: boolean; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private setTab; private validateType; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }