import { InvalidateQueryFilters, QueryClient, UseQueryResult, UseSuspenseQueryResult } from "@tanstack/react-query"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { QueryHookOptions, SuspenseQueryHookOptions, TupleToPrefixes } from "./_types.js"; import { buildLlmEvalsGetScheduleQuery, LlmEvalsGetScheduleQueryData, prefetchLlmEvalsGetSchedule, queryKeyLlmEvalsGetSchedule } from "./llmEvalsGetSchedule.core.js"; export { buildLlmEvalsGetScheduleQuery, type LlmEvalsGetScheduleQueryData, prefetchLlmEvalsGetSchedule, queryKeyLlmEvalsGetSchedule, }; export type LlmEvalsGetScheduleQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Get an eval schedule * * @remarks * Retrieves an eval schedule by ID, including the next scheduled fire time from Temporal when resolvable. */ export declare function useLlmEvalsGetSchedule(request: operations.GetEvalScheduleRequest, options?: QueryHookOptions): UseQueryResult; /** * Get an eval schedule * * @remarks * Retrieves an eval schedule by ID, including the next scheduled fire time from Temporal when resolvable. */ export declare function useLlmEvalsGetScheduleSuspense(request: operations.GetEvalScheduleRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmEvalsGetScheduleData(client: QueryClient, queryKeyBase: [ scheduleId: string, parameters: { xOnBehalfOf?: string | undefined; } ], data: LlmEvalsGetScheduleQueryData): LlmEvalsGetScheduleQueryData | undefined; export declare function invalidateLlmEvalsGetSchedule(client: QueryClient, queryKeyBase: TupleToPrefixes<[ scheduleId: string, parameters: { xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmEvalsGetSchedule(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmEvalsGetSchedule.d.ts.map