import type { PluginCommandContext, PluginCommandResult } from "./types.js"; /** * /research-status - Show workspace status for all research agents */ export declare function handleResearchStatus(_ctx: PluginCommandContext): PluginCommandResult; /** * /papers - List downloaded papers in a research agent workspace */ export declare function handlePapers(ctx: PluginCommandContext): PluginCommandResult; /** * /ideas - List generated ideas in a research agent workspace */ export declare function handleIdeas(ctx: PluginCommandContext): PluginCommandResult; /** * /projects - List all research projects (alias for /research-status) */ export declare function handleProjects(_ctx: PluginCommandContext): PluginCommandResult; /** * /project-switch - No longer needed (each agent has its own workspace) */ export declare function handleProjectSwitch(_ctx: PluginCommandContext): PluginCommandResult; /** * /project-delete - Delete via CLI instead */ export declare function handleProjectDelete(_ctx: PluginCommandContext): PluginCommandResult; //# sourceMappingURL=commands.d.ts.map