import type { CallToolResult } from "@modelcontextprotocol/sdk/types.js"; import type { XReplyClient } from "../client.js"; export type ToolResult = CallToolResult; export interface ToolDefinition { name: string; description: string; inputSchema: Record; handler: (args: Record, client: XReplyClient) => Promise; } export declare const postTools: ToolDefinition[]; //# sourceMappingURL=posts.d.ts.map