import type { PromptRegistryFileName } from "./prompt-registry.js"; export interface DocSyncAuditOptions { root?: string; taskId?: string; strict?: boolean; } export interface DocSyncPromptIssue { severity: "warning" | "error"; path: string; register: PromptRegistryFileName; message: string; recommendation: string; } export interface DocSyncLessonSuggestion { path: string; reason: string; command: string; } export interface DocSyncAuditReport { valid: boolean; changedPaths: string[]; promptIssues: DocSyncPromptIssue[]; lessonSuggestions: DocSyncLessonSuggestion[]; } export declare function auditDocSync(options?: DocSyncAuditOptions): Promise;