import { FC } from 'react';
import { iChoiceProps } from './choice';
declare const LiveKitRoomContent: FC<{
    isMuted: boolean;
    volume: number;
    callDuration: string;
    config: iChoiceProps["config"];
    onClose: () => void;
    onChatSelection: () => void;
    onEndCall: () => void;
    handleMicrophoneToggle: () => void;
    handleVolumeChange: (volume: number) => void;
}>;
export default LiveKitRoomContent;
