import type { TaskHandle } from './task-handle.js'; import type { TaskManager } from './task-manager.js'; /** * Factory function that creates a {@link TaskHandle} backed by a * {@link TaskManager}. * * Every method delegates to the manager — the handle is a thin, * task-scoped facade that providers interact with. */ export declare function createTaskHandle(manager: TaskManager, taskId: string): TaskHandle;