export type ExercisesResult = { success: boolean; message?: string; error?: Error; }; export type ExercisesListOptions = { silent?: boolean; json?: boolean; }; export type ExerciseContextOptions = { exerciseNumber?: number; stepNumber?: number; silent?: boolean; json?: boolean; }; export type ExportContextOptions = { silent?: boolean; output?: string; }; /** * Export all workshop context (instructions, diffs, transcripts) as JSON. * Excludes user-specific data (progress, auth, playground state). */ export declare function exportContext(options?: ExportContextOptions): Promise; /** * List all exercises with progress */ export declare function list(options?: ExercisesListOptions): Promise; /** * Show detailed context for a specific exercise */ export declare function showExercise(options?: ExerciseContextOptions): Promise;