import { OnInit } from '@angular/core'; import { UntypedFormControl } from '@angular/forms'; import { ItemOf } from '../../../common/base-list.component'; import { GetChannelsQuery } from '../../../common/generated-types'; import { DataService } from '../../../data/providers/data.service'; import { Dialog } from '../../../providers/modal/modal.types'; import { NotificationService } from '../../../providers/notification/notification.service'; import * as i0 from "@angular/core"; type Channel = ItemOf; export declare class AssignToChannelDialogComponent implements OnInit, Dialog { private dataService; private notificationService; selectedChannels: Channel[]; currentChannel: Channel; availableChannels: Channel[]; resolveWith: (result?: Channel[]) => void; selectedChannelIdControl: UntypedFormControl; itemNames: string; nMore: number; constructor(dataService: DataService, notificationService: NotificationService); ngOnInit(): void; selectChannel(channelIds: string[]): void; assign(): void; cancel(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};