import type { ToolDefinition } from "../types.js"; import { TOOL_DEFINITIONS } from "./definitions/aggregate.js"; export { TOOL_DEFINITIONS }; export { assertDefinitionRegistryConsistency, getCompactToolDefinitions, getToolDefinitions, } from "./definitions/selection.js"; export declare const PLAN_TOOL_NAMES: Set; export declare const RESPONDER_TOOL_NAMES: Set; export declare const RUNNER_META_TOOL_NAMES: Set; export declare const MCP_AGENT_TOOL_NAMES: Set; export declare function mcpAgentToolNames(askMode: boolean): string[]; export declare const NON_REGISTRY_TOOL_NAMES: Set; export declare function getToolDefinition(name: string): ToolDefinition | undefined; export declare function wireNameFor(canonical: string): string; export declare function canonicalNameFor(wire: string): string | undefined;