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 { buildLlmResponsesListQuery, LlmResponsesListQueryData, prefetchLlmResponsesList, queryKeyLlmResponsesList } from "./llmResponsesList.core.js"; export { buildLlmResponsesListQuery, type LlmResponsesListQueryData, prefetchLlmResponsesList, queryKeyLlmResponsesList, }; export type LlmResponsesListQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List all responses with pagination * * @remarks * Retrieves a paginated list of all agent responses for the authenticated user. */ export declare function useLlmResponsesList(request: operations.ListResponsesRequest, options?: QueryHookOptions): UseQueryResult; /** * List all responses with pagination * * @remarks * Retrieves a paginated list of all agent responses for the authenticated user. */ export declare function useLlmResponsesListSuspense(request: operations.ListResponsesRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmResponsesListData(client: QueryClient, queryKeyBase: [ parameters: { after?: string | undefined; before?: string | undefined; limit?: number | undefined; order?: operations.ListResponsesQueryParamOrder | undefined; xOnBehalfOf?: string | undefined; } ], data: LlmResponsesListQueryData): LlmResponsesListQueryData | undefined; export declare function invalidateLlmResponsesList(client: QueryClient, queryKeyBase: TupleToPrefixes<[ parameters: { after?: string | undefined; before?: string | undefined; limit?: number | undefined; order?: operations.ListResponsesQueryParamOrder | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmResponsesList(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmResponsesList.d.ts.map