import type { AgentLessonInput } from "./types.js"; export interface AssistedAgentLessonInput { taskId?: string; role?: string; operation: string; failedAction: string; error?: string; errorSignature?: string; rootCause: string; fix: string; prevention: string; appliesTo: string[]; verifiedBy: string[]; } export interface AssistedAgentLessonDraft { value: AgentLessonInput; redacted: boolean; } export declare function createAssistedAgentLessonDraft(input: AssistedAgentLessonInput): AssistedAgentLessonDraft;