import { TutorLessonCardLabels, LessonModality, LessonStudent, LessonType } from './TutorLessonCard'; interface LessonCardFooterProps { type: LessonType; modality: LessonModality; time: string; room?: string; lessonCenter?: string; isInProgress?: boolean; students: LessonStudent[]; isStartLessonDisabled: boolean; onStartLesson?: () => void; onWorkspace?: () => void; onDocumentLesson?: () => void; isDocumentLessonDisabled?: boolean; labels: Required; } export declare function LessonCardFooter({ type, modality, time, room, lessonCenter, isInProgress, students, isStartLessonDisabled, onStartLesson, onWorkspace, onDocumentLesson, isDocumentLessonDisabled, labels, }: LessonCardFooterProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=LessonCardFooter.d.ts.map