import { ThemeType } from '../styles';
import { VoxketClient } from '../core/client';
import { DisplayType } from './widget';
interface VideoViewProps {
    client: VoxketClient;
    theme?: ThemeType;
    onBack?: () => void;
    disabled?: boolean;
    displayType?: DisplayType;
    onEndCall?: () => void;
}
export default function VideoView({ client, theme, onBack, disabled, displayType, onEndCall }: VideoViewProps): import("react/jsx-runtime").JSX.Element;
export {};
