/** * Shared GraphQL fetch against the Tsunami V3 subgraph. Exported so the * premium `analytics_*` tools can compose the same endpoint. */ export declare function querySubgraph(query: string, variables?: Record): Promise; export declare const subgraphTools: ({ name: string; description: string; inputSchema: { type: "object"; properties: { first?: undefined; skip?: undefined; orderBy?: undefined; orderDirection?: undefined; owner?: undefined; origin?: undefined; }; required?: undefined; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { first: { type: string; description: string; }; skip: { type: string; description: string; }; orderBy: { type: string; description: string; }; orderDirection: { type: string; description: string; }; owner?: undefined; origin?: undefined; }; required?: undefined; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { first: { type: string; description: string; }; skip?: undefined; orderBy?: undefined; orderDirection?: undefined; owner?: undefined; origin?: undefined; }; required?: undefined; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { owner: { type: string; description: string; }; first?: undefined; skip?: undefined; orderBy?: undefined; orderDirection?: undefined; origin?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { origin: { type: string; description: string; }; first: { type: string; description: string; }; skip?: undefined; orderBy?: undefined; orderDirection?: undefined; owner?: undefined; }; required: string[]; }; })[]; export declare function handleSubgraphTool(name: string, args: Record): Promise; //# sourceMappingURL=subgraph.d.ts.map