/** * Background task tools — spawn, monitor, wait, and cancel background agent tasks. */ import { tool } from '@opencode-ai/plugin'; import type { ToolContext } from './types'; import type { BackgroundSpawner } from '../runtime/background/spawner'; import type { BackgroundManager } from '../runtime/background/manager'; import type { ConcurrencyManager } from '../runtime/background/concurrency'; export declare function createBackgroundTools(ctx: ToolContext & { bgSpawner: BackgroundSpawner | null; bgManager: BackgroundManager | null; bgConcurrency: ConcurrencyManager | null; }): Record>; //# sourceMappingURL=background.d.ts.map