import { ElementRef, TemplateRef } from '@angular/core'; export declare type GasTabsType = 'default' | 'scoped'; export interface Tab { title: string; active: boolean; content: string | TemplateRef; id: string; }