export interface SyncOptions { docsPath: string; dryRun?: boolean; fix?: boolean; domain?: string; silent?: boolean; } export interface SyncResult { totalFiles: number; validFiles: number; fixedFiles: number; skippedFiles: number; errors: SyncError[]; stats: SyncStats; } export interface SyncError { file: string; error: string; fixable: boolean; } export interface SyncStats { totalWordCount: number; avgCompleteness: number; byDomain: Record; byStatus: Record; byTier: Record; } /** * Sync metadata across all documentation files */ export declare function syncMetadata(options: SyncOptions): Promise; /** * Get sync statistics for a documentation root */ export declare function getSyncStats(docsPath: string): Promise; //# sourceMappingURL=sync.d.ts.map