import { FeedbackState, TutorLessonCardLabels, LessonModality, LessonStudent, LessonType } from './TutorLessonCard'; interface LessonCardFeedbackProps { type: LessonType; modality: LessonModality; feedbackState: FeedbackState; pendingFeedbackCount: number; isInProgress?: boolean; students: LessonStudent[]; onWorkspace?: () => void; onDocumentLesson?: () => void; isDocumentLessonDisabled?: boolean; onReviewFeedback?: () => void; labels: Required; } export declare function LessonCardFeedback({ type, modality, feedbackState, pendingFeedbackCount, isInProgress, students, onWorkspace, onDocumentLesson, isDocumentLessonDisabled, onReviewFeedback, labels, }: LessonCardFeedbackProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=LessonCardFeedback.d.ts.map