export type ProgressResult = { success: boolean; message?: string; error?: Error; }; export type ProgressShowOptions = { silent?: boolean; json?: boolean; }; export type ProgressUpdateOptions = { lessonSlug?: string; complete?: boolean; silent?: boolean; }; /** * Show user progress for the current workshop */ export declare function show(options?: ProgressShowOptions): Promise; /** * Update progress for a specific lesson */ export declare function update(options?: ProgressUpdateOptions): Promise;