/** * Series Management CLI Handler — PROC-11 * * Handles the `series` command and all its subcommands: * create, add-book, list, bible (add | list), threads, check */ import type { ParsedArgs, OutputFormatter } from '../types.js'; import type { NovelWriterExtension } from '../../index.js'; /** * Entry point for the `series` command. */ export declare function handleSeriesCommand(args: ParsedArgs, _projectPath: string, output: OutputFormatter, extension?: NovelWriterExtension): Promise; //# sourceMappingURL=series-handler.d.ts.map