import { StudentLessonCardClassmate, StudentLessonCardLabels, FeedbackState, LessonModality, LessonState, LessonType } from './StudentLessonCard'; interface StudentLessonCardFooterProps { modality: LessonModality; type: LessonType; time: string; lessonState: LessonState; feedbackState: FeedbackState; tutor: { name: string; avatarSrc?: string; }; classmates: StudentLessonCardClassmate[]; room?: string; lessonCenter?: string; isInProgress: boolean; isStartLessonDisabled: boolean; onStartLesson?: () => void; onWorkspace?: () => void; onRateLesson?: () => void; onCheckFeedback?: () => void; labels: Required; } export declare function StudentLessonCardFooter({ modality, type, time, lessonState, feedbackState, tutor, classmates, room, lessonCenter, isInProgress, isStartLessonDisabled, onStartLesson, onWorkspace, onRateLesson, onCheckFeedback, labels, }: StudentLessonCardFooterProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=StudentLessonCardFooter.d.ts.map