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 { buildLlmFeedbackGetResponseFeedbackQuery, LlmFeedbackGetResponseFeedbackQueryData, prefetchLlmFeedbackGetResponseFeedback, queryKeyLlmFeedbackGetResponseFeedback } from "./llmFeedbackGetResponseFeedback.core.js"; export { buildLlmFeedbackGetResponseFeedbackQuery, type LlmFeedbackGetResponseFeedbackQueryData, prefetchLlmFeedbackGetResponseFeedback, queryKeyLlmFeedbackGetResponseFeedback, }; export type LlmFeedbackGetResponseFeedbackQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Retrieve feedback by response ID * * @remarks * Retrieves the existing feedback rating and description for a specific agent response. */ export declare function useLlmFeedbackGetResponseFeedback(request: operations.GetResponseFeedbackRequest, options?: QueryHookOptions): UseQueryResult; /** * Retrieve feedback by response ID * * @remarks * Retrieves the existing feedback rating and description for a specific agent response. */ export declare function useLlmFeedbackGetResponseFeedbackSuspense(request: operations.GetResponseFeedbackRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmFeedbackGetResponseFeedbackData(client: QueryClient, queryKeyBase: [id: string, parameters: { xOnBehalfOf?: string | undefined; }], data: LlmFeedbackGetResponseFeedbackQueryData): LlmFeedbackGetResponseFeedbackQueryData | undefined; export declare function invalidateLlmFeedbackGetResponseFeedback(client: QueryClient, queryKeyBase: TupleToPrefixes<[ id: string, parameters: { xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmFeedbackGetResponseFeedback(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmFeedbackGetResponseFeedback.d.ts.map