/** * Revision CLI Handler * Handles the `revision` command and all its subcommands. */ import type { ParsedArgs, OutputFormatter } from '../types.js'; /** * Entry point for the `revision` command. * * @param args - Parsed CLI arguments * @param projectPath - Absolute path to the novel project directory * @param output - Output formatter */ export declare function handleRevisionCommand(args: ParsedArgs, projectPath: string, output: OutputFormatter): Promise; //# sourceMappingURL=revision-handler.d.ts.map