import { OnInit, EventEmitter } from '@angular/core'; import { TabData } from '../../models/ITabData'; export declare class TabsComponent implements OnInit { /** * Options to display as tabs. * Use the TabData interface: { label: string; componentType: string; } * @internal */ options: TabData[]; /** * Emit a string to know which element should be displayed in the parent component * @internal */ emitComponent: EventEmitter; constructor(); ngOnInit(): void; emitValue: (elementType: string) => void; }