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 { buildLlmEvalsListRunsQuery, LlmEvalsListRunsQueryData, prefetchLlmEvalsListRuns, queryKeyLlmEvalsListRuns } from "./llmEvalsListRuns.core.js"; export { buildLlmEvalsListRunsQuery, type LlmEvalsListRunsQueryData, prefetchLlmEvalsListRuns, queryKeyLlmEvalsListRuns, }; export type LlmEvalsListRunsQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List eval runs * * @remarks * Returns eval runs visible to the authenticated team context. suite_version is a per-suite ordinal and must be paired with suite_id; supplying it alone returns 400. */ export declare function useLlmEvalsListRuns(request: operations.ListEvalRunsRequest, options?: QueryHookOptions): UseQueryResult; /** * List eval runs * * @remarks * Returns eval runs visible to the authenticated team context. suite_version is a per-suite ordinal and must be paired with suite_id; supplying it alone returns 400. */ export declare function useLlmEvalsListRunsSuspense(request: operations.ListEvalRunsRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmEvalsListRunsData(client: QueryClient, queryKeyBase: [ parameters: { after?: string | undefined; limit?: number | undefined; suiteId?: string | undefined; suiteVersion?: number | undefined; status?: operations.Status | undefined; xOnBehalfOf?: string | undefined; } ], data: LlmEvalsListRunsQueryData): LlmEvalsListRunsQueryData | undefined; export declare function invalidateLlmEvalsListRuns(client: QueryClient, queryKeyBase: TupleToPrefixes<[ parameters: { after?: string | undefined; limit?: number | undefined; suiteId?: string | undefined; suiteVersion?: number | undefined; status?: operations.Status | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmEvalsListRuns(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmEvalsListRuns.d.ts.map