import React from 'react'; import { ReactionAnimationType } from '../../helpers/context'; import { TrackingDataType } from '../../helpers/hooks/useCurrentLessonData'; export interface Props { toggleLocalAudio: (mute: boolean) => void; toggleLocalVideo: (mute: boolean) => void; toggleScreenSharing: () => void; onReactionClick?: (typeOfAnimation?: ReactionAnimationType) => void; handleEndCall?: () => Promise | void; isTrialWrapEndLessonButtonVisible?: boolean; isTutorFeedbackSnackbarButtonVisible?: boolean; isSnackbarActive?: boolean; trackingData?: TrackingDataType; } export declare const Controls: ({ toggleLocalAudio, toggleLocalVideo, toggleScreenSharing, onReactionClick, isTrialWrapEndLessonButtonVisible, handleEndCall, isSnackbarActive, trackingData, isTutorFeedbackSnackbarButtonVisible, }: Props) => React.JSX.Element; //# sourceMappingURL=index.d.ts.map