/** * Revise CLI Handler — mechanical prose fixes * * Handles: * /novel revise (dry run — preview only) * /novel revise --apply cat1,cat2 (apply listed categories) * /novel revise --all (apply every safe category) * * `` may be a chapter number (matched against the leading numeric * prefix of files in `chapters/`) or a literal `.md` filename. */ import type { ParsedArgs, OutputFormatter } from '../types.js'; /** * Entry point for the `revise` command. * * @param args - Parsed CLI arguments * @param projectPath - Absolute path to the novel project directory * @param output - Output formatter */ export declare function handleReviseCommand(args: ParsedArgs, projectPath: string, output: OutputFormatter): Promise; //# sourceMappingURL=revise-handler.d.ts.map