import React, { ReactElement } from 'react'; import { ILocalVideoTrack } from 'agora-rtc-sdk-ng'; import { SelectedDevices } from '../ModalSelectDevice/VideoAudioTab'; interface Props { onStartCall: ({ fromStartLessonButton }: { fromStartLessonButton: boolean; }) => void; onConfirmDevices: (inputDevices: SelectedDevices) => void; onEndScreenSharing: () => void; isLoading: boolean; lobbyControls?: ReactElement; screenSharingTrack: ILocalVideoTrack | null; newExperienceLocalScreenClassName: string; } export declare const Screens: ({ onStartCall, isLoading, onEndScreenSharing, onConfirmDevices, lobbyControls, screenSharingTrack, newExperienceLocalScreenClassName, }: Props) => React.JSX.Element | null; export {}; //# sourceMappingURL=index.d.ts.map