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 { buildLlmResponsesListInputItemsQuery, LlmResponsesListInputItemsQueryData, prefetchLlmResponsesListInputItems, queryKeyLlmResponsesListInputItems } from "./llmResponsesListInputItems.core.js"; export { buildLlmResponsesListInputItemsQuery, type LlmResponsesListInputItemsQueryData, prefetchLlmResponsesListInputItems, queryKeyLlmResponsesListInputItems, }; export type LlmResponsesListInputItemsQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List paginated input items for a response * * @remarks * Retrieves a paginated list of all input items provided when creating the specified agent response. */ export declare function useLlmResponsesListInputItems(request: operations.ListInputItemsRequest, options?: QueryHookOptions): UseQueryResult; /** * List paginated input items for a response * * @remarks * Retrieves a paginated list of all input items provided when creating the specified agent response. */ export declare function useLlmResponsesListInputItemsSuspense(request: operations.ListInputItemsRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmResponsesListInputItemsData(client: QueryClient, queryKeyBase: [ responseId: string, parameters: { after?: string | undefined; include?: Array | undefined; limit?: number | undefined; order?: operations.ListInputItemsQueryParamOrder | undefined; xOnBehalfOf?: string | undefined; } ], data: LlmResponsesListInputItemsQueryData): LlmResponsesListInputItemsQueryData | undefined; export declare function invalidateLlmResponsesListInputItems(client: QueryClient, queryKeyBase: TupleToPrefixes<[ responseId: string, parameters: { after?: string | undefined; include?: Array | undefined; limit?: number | undefined; order?: operations.ListInputItemsQueryParamOrder | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmResponsesListInputItems(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmResponsesListInputItems.d.ts.map