import { PrivateMessagingClient } from "./client.js"; import { type JsonValue } from "./serialize.js"; import type { StarterGrantServiceConfig } from "./types.js"; import type { McpToolDefinition, McpToolName } from "./types.js"; export declare const PRIVATE_MESSAGING_MCP_TOOLS: readonly McpToolDefinition[]; export declare function invokePrivateMessagingTool(client: PrivateMessagingClient, toolName: McpToolName, rawInput: unknown, options?: { starterGrantConfig?: StarterGrantServiceConfig; fetchImpl?: typeof fetch; }): Promise;