import { MediaStream } from 'react-native-webrtc'; import Call from '../verto/Call'; import ViewType from '../enums/ViewType.enum'; import CallInfoParams from '../models/Call/CallInfoParams'; interface Props { call?: Call; callParams?: CallInfoParams; callState?: string; cameraFacing?: string; indicatorColor?: string; indicatorVisible?: boolean; isAudioOff: boolean; isCallScreenVisible?: boolean; isCameraOff: boolean; isRemoteAudioOff: boolean; isToolboxVisible?: boolean; localStream?: MediaStream; onAudioStateChanged?: Function; onCallHangup?: (call?: Call) => void; onCallRequested?: (call: Call) => void; onLogoutClicked?: Function; onMicrophoneMuted?: (muted: boolean) => void; onVideoMuted?: (muted: boolean) => void; onRemoteAudioStateChanged?: Function; onVideoStateChanged?: Function; remoteStream?: MediaStream; showLogs?: boolean; viewKey: string; viewType: ViewType; } declare const VertoView: (props: Props) => JSX.Element; export default VertoView;