/** * Research CLI Handler — SPEC-04 * * Handles the `research` command and all its subcommands: * add, list, show, link, verify-list, sync */ import type { ParsedArgs, OutputFormatter } from '../types.js'; import type { NovelWriterExtension } from '../../index.js'; /** * Entry point for the `research` command. */ export declare function handleResearchCommand(args: ParsedArgs, projectPath: string, output: OutputFormatter, extension?: NovelWriterExtension): Promise; //# sourceMappingURL=research-handler.d.ts.map