import type { DiffOutput } from '../../types.js'; import type { ParsedArgs } from '../parser.js'; import type { ReplDeps } from './types.js'; export type DiffExecOutput = DiffOutput & { error?: string; }; /** * One-shot diff. Two shapes: * diff — fetch the URL live, diff the CACHED copy * (old.url) against the freshly fetched body * (new.markdown). Populate the cache first with * `wigolo fetch ` / `wigolo crawl`. * diff --old=… --new=… — inline text diff, no network. */ export declare function executeDiff(args: ParsedArgs, deps: ReplDeps): Promise; //# sourceMappingURL=diff.d.ts.map