import { CredentialStore } from "../services/credentials.js"; export interface ToolDefinition { name: string; description: string; inputSchema: { type: "object"; properties: Record; required?: string[]; }; } /** * Get all tool definitions for tools/list response */ export declare function getAllToolDefinitions(): ToolDefinition[]; /** * Route tool calls to appropriate handlers */ export declare function handleToolCall(toolName: string, args: Record, credentialStore: CredentialStore): Promise; //# sourceMappingURL=index.d.ts.map