import { EventEmitter, TemplateRef } from '@angular/core'; import { AlertCaller } from './alert-call-config'; import { AlertCallDevice } from './device-list-call.component'; export declare class AlertCallComponent { private key; answerShareButtonVisible: boolean; answerVideoButtonVisible: boolean; answerVoiceButtonVisible: boolean; avatar: TemplateRef; caller: AlertCaller; defaultSelectedDevice: string | number | object | any[]; deviceListHeader: string; devices: AlertCallDevice[]; rejectAriaLabel: string; shareAriaLabel: string; title: string; videoAriaLabel: string; voiceAriaLabel: string; readonly answerShare: EventEmitter; readonly answerVideo: EventEmitter; readonly answerVoice: EventEmitter; readonly reject: EventEmitter; readonly deviceSelect: EventEmitter; onAnswerShare(): void; onAnswerVideo(): void; onAnswerVoice(): void; onReject(): void; onDeviceSelect(device: AlertCallDevice): void; }