/** * Agent Blame Command * * Shows AI attribution for each line in a file, similar to git blame. * Displays prompts and session information from git notes. */ interface BlameOptions { json?: boolean; summary?: boolean; showPrompts?: boolean; verbose?: boolean; } /** * Run agentblame on a file */ export declare function blame(filePath: string, options?: BlameOptions): Promise; export {};