/** * Learning Reports Resource * * Student learning reports and time tracking. */ import type { EdubridgeTransportLike, MapProfile, TimeSaved } from '../types'; /** * Learning Reports resource for student progress data. * * Provides access to MAP profiles and time saved metrics. */ export declare class LearningReportsResource { private readonly transport; constructor(transport: EdubridgeTransportLike); /** * Get MAP profile for a user. * * @param userId - User ID * @returns MAP profile data */ getMapProfile(userId: string): Promise; /** * Get time saved metrics for a user. * * @param userId - User ID * @returns Time saved data */ getTimeSaved(userId: string): Promise; } //# sourceMappingURL=learning-reports.d.ts.map