import { OnInit } from '@angular/core'; import { UntypedFormControl } from '@angular/forms'; import { Observable } from 'rxjs'; import { CurrentUserChannel } from '../../common/generated-types'; import { DataService } from '../../data/providers/data.service'; import { ChannelService } from '../../providers/channel/channel.service'; import * as i0 from "@angular/core"; export declare class ChannelSwitcherComponent implements OnInit { private dataService; private channelService; readonly displayFilterThreshold = 10; channels$: Observable; channelCount$: Observable; filterControl: UntypedFormControl; activeChannelCode$: Observable; constructor(dataService: DataService, channelService: ChannelService); ngOnInit(): void; setActiveChannel(channelId: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }