import { ChangeDetectorRef, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; import { CometChat } from '@cometchat-pro/chat'; import { OutgoingCallStyle } from "uikit-utils-lerna"; import { AvatarStyle, CardStyle, IconStyle } from 'my-cstom-package-lit'; import { CometChatThemeService } from '../../../CometChatTheme.service'; import { IconButtonAlignment } from 'uikit-resources-lerna'; /** * * CometChatOutgoingCallComponent is a component whic shows outgoing call screen for default audio and video call. * * @version 1.0.0 * @author CometChatTeam * @copyright © 2022 CometChat Inc. * */ export declare class CometChatOutgoingCallComponent implements OnInit, OnChanges { private ref; private themeService; call: CometChat.Call; declineButtonText: string; declineButtonIconURL: string; customView: TemplateRef; onError: (error: CometChat.CometChatException) => void; disableSoundForCalls: boolean; customSoundForCalls: string; avatarStyle: AvatarStyle; outgoingCallStyle: OutgoingCallStyle; onCloseClicked: (() => void) | null; buttonStyle: any; subtitleText: string; cardStyle: CardStyle; iconAlignment: IconButtonAlignment; iconStyle: IconStyle; constructor(ref: ChangeDetectorRef, themeService: CometChatThemeService); ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; playAudio(): void; ngOnDestroy(): void; onClose: () => void; getAvatarURL(): string; setThemeStyle(): void; setOutgoingCallStyle(): void; setAvatarStyle(): void; subtitleStyle(): { textFont: string | undefined; textColor: string | undefined; }; wrapperStyle: () => { height: string | undefined; width: string | undefined; background: string | undefined; border: string | undefined; borderRadius: string | undefined; }; }