/** * Read-Aloud Command Handler (CRAFT-05 — real TTS) * * Resolves a chapter (and optional scene), strips manuscript markup, then hands * the clean prose to `speak()` so the author can HEAR the cadence. Distinct * from `analyze read-aloud`, which only prints rhythm/rhyme analysis. */ import type { ParsedArgs, OutputFormatter } from '../types.js'; /** * Handle `/novel readaloud [--chapter N] [--scene N] [--rate N] [--out path] [--text "..."]`. */ export declare function handleReadAloudCommand(args: ParsedArgs, projectPath: string, output: OutputFormatter): Promise; //# sourceMappingURL=readaloud-handler.d.ts.map