import React, { ReactElement } from 'react'; export interface SelectedDevices { selectedAudioInputDeviceId: string; selectedVideoInputDeviceId: string; selectedAudioOutputDeviceId: string; } interface Props { onConfirm?: (inputDevices: SelectedDevices) => void; stream: MediaStream | null; setStream: React.Dispatch>; cleanupStreams: () => Promise; videoRef: React.MutableRefObject; lobbyControls?: ReactElement; newClassroom?: boolean; name?: string; subject?: string; avatar?: string; } export declare const VideoAudioTab: ({ onConfirm, stream, setStream, cleanupStreams, videoRef, lobbyControls, newClassroom, name, subject, avatar, }: Props) => React.JSX.Element; export {}; //# sourceMappingURL=VideoAudioTab.d.ts.map