import type { SlashCommand } from '../types.js'; import type { SubagentManager } from '../../../agent/subagent.js'; import type { InteractiveCtx } from '../../commands/interactive/shared.js'; export declare function setTasksRegistry(manager: SubagentManager, sessionLabel: string): void; export declare function setTasksIctx(ictx: InteractiveCtx): void; export declare function getTasksManager(): SubagentManager | undefined; export declare function resetTasksRegistry(): void; export declare const tasksCmd: SlashCommand; export declare const tasksViewCmd: SlashCommand; export declare const tasksCancelCmd: SlashCommand; export declare const tasksCommands: readonly SlashCommand[];