/// <reference types="react" />
import { defaultVertoCallbacks } from '../store';
import VertoParams from '../models/VertoParams';
import ViewType from '../enums/ViewType.enum';
import MakeCallParams from '../models/Call/MakeCallParams';
interface Props {
    vertoParams: VertoParams;
    callbacks: defaultVertoCallbacks;
    onLogoutClicked: Function;
    viewType: ViewType;
    indicatorColor?: string;
    callState?: string;
    callParams?: MakeCallParams;
    onAudioStateChanged?: Function;
    onVideoStateChanged?: Function;
    isAudioOff: boolean;
    isCameraOff: boolean;
    cameraFacing?: string;
    isToolboxVisible?: boolean;
}
declare const VertoView: (props: Props) => JSX.Element;
export default VertoView;
