import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { SDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export type AgentRunsStreamAgentRunEventsQueryData = string; export declare function prefetchAgentRunsStreamAgentRunEvents(queryClient: QueryClient, client$: SDKCore, request: operations.StreamAgentRunEventsRequest, options?: RequestOptions): Promise; export declare function buildAgentRunsStreamAgentRunEventsQuery(client$: SDKCore, request: operations.StreamAgentRunEventsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyAgentRunsStreamAgentRunEvents(agentId: string, runId: string, parameters: { xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=agentRunsStreamAgentRunEvents.core.d.ts.map