import { TutorLessonCardLabels, TutorLessonCardMenuItem, LessonModality, LessonStudent, LessonType } from './TutorLessonCard'; interface LessonCardHeaderProps { title: string; modality: LessonModality; type: LessonType; subjects: string[]; time: string; students: LessonStudent[]; room?: string; lessonCenter?: string; isInProgress: boolean; isCompleted: boolean; isSubmittedFeedback: boolean; menuItems?: TutorLessonCardMenuItem[]; onReviewFeedback?: () => void; labels: Required; } export declare function LessonCardHeader({ title, modality, type, subjects, time, students, room, lessonCenter, isInProgress, isCompleted, isSubmittedFeedback, menuItems, onReviewFeedback, labels, }: LessonCardHeaderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=LessonCardHeader.d.ts.map