/** * Draft CLI Handler — SPEC-06 Drafting Support Tools * * Handles: * /novel draft tk-list [--chapter N] * /novel draft chapter-check */ import type { ParsedArgs, OutputFormatter } from '../types.js'; /** * Entry point for the `draft` command and its subcommands. * * @param args - Parsed CLI arguments * @param projectPath - Absolute path to the novel project directory * @param output - Output formatter */ export declare function handleDraftCommand(args: ParsedArgs, projectPath: string, output: OutputFormatter): Promise; //# sourceMappingURL=draft-handler.d.ts.map