/** * Agent Blame Sync Command * * Transfers attribution notes after squash/rebase merges. * Detects recent merges, fetches original PR commits, and transfers notes. */ interface SyncOptions { dryRun?: boolean; verbose?: boolean; } /** * Main sync function */ export declare function sync(options?: SyncOptions): Promise; export {};