import { type KanbanBoundaryEvaluation } from '@wrongstack/kanban'; import type { Context } from '../core/context.js'; import type { Tool } from '../types/tool.js'; export interface ToolKanbanBoundaryEvaluation extends KanbanBoundaryEvaluation { boardId?: string | undefined; taskId?: string | undefined; } /** Resolve the live board/task policy and gate one tool invocation. */ export declare function evaluateToolKanbanBoundary(tool: Tool, input: Record, ctx: Context): Promise; //# sourceMappingURL=kanban-boundary.d.ts.map