import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { AuthContext } from '../types.js'; export declare const recordLessonTool: Tool; export declare const listLessonsTool: Tool; export declare function handleRecordLesson(auth: AuthContext, args: Record): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: never; }>; export declare function handleListLessons(auth: AuthContext, args: Record): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: never; }>; //# sourceMappingURL=lessons.d.ts.map