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 LlmEvalsGetScheduleQueryData = operations.GetEvalScheduleResponseBody; export declare function prefetchLlmEvalsGetSchedule(queryClient: QueryClient, client$: SDKCore, request: operations.GetEvalScheduleRequest, options?: RequestOptions): Promise; export declare function buildLlmEvalsGetScheduleQuery(client$: SDKCore, request: operations.GetEvalScheduleRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyLlmEvalsGetSchedule(scheduleId: string, parameters: { xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=llmEvalsGetSchedule.core.d.ts.map