import { CSSProperties } from 'react';
import { VideoDisplayMode, VideoResolution } from '../../TUICallService';
interface ITUICallKitProps {
    style?: CSSProperties;
    className?: string;
    allowedMinimized?: boolean;
    allowedFullScreen?: boolean;
    videoDisplayMode?: VideoDisplayMode;
    videoResolution?: VideoResolution;
    beforeCalling?: any;
    afterCalling?: any;
    onMinimized?: any;
}
export default function TUICallKit(props: ITUICallKitProps): import("react/jsx-runtime").JSX.Element;
export {};
