import { ElementRef, OnInit, OnDestroy } from '@angular/core'; import { VgAPI } from '../../core/services/vg-api'; import { Subscription } from 'rxjs/Subscription'; export interface Option { id: string; label: string; selected: boolean; } export declare class VgTrackSelector implements OnInit, OnDestroy { API: VgAPI; vgFor: string; elem: HTMLElement; target: any; tracks: Array