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