import type { ToolAnnotations } from "@modelcontextprotocol/sdk/types.js"; /** Conservative MCP hints. They describe expected behavior, never authorization. */ export declare function annotationsForTool(name: string): ToolAnnotations; export declare function structuredToolResult(tool: string, success: boolean, data?: unknown, error?: string): { data: {} | null; ok: boolean; tool: string; } | { error: string; ok: boolean; tool: string; }; //# sourceMappingURL=tool-metadata.d.ts.map