import { MutationKey, UseMutationResult } from "@tanstack/react-query"; import { SDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; 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 { MutationHookOptions } from "./_types.js"; export type LlmFeedbackBatchGetResponseFeedbackMutationVariables = { request: operations.BatchGetResponseFeedbackRequest; options?: RequestOptions; }; export type LlmFeedbackBatchGetResponseFeedbackMutationData = components.BatchGetFeedbackResponse; export type LlmFeedbackBatchGetResponseFeedbackMutationError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Batch retrieve feedback for multiple responses * * @remarks * Retrieves feedback for multiple agent responses in a single batch request. */ export declare function useLlmFeedbackBatchGetResponseFeedbackMutation(options?: MutationHookOptions): UseMutationResult; export declare function mutationKeyLlmFeedbackBatchGetResponseFeedback(): MutationKey; export declare function buildLlmFeedbackBatchGetResponseFeedbackMutation(client$: SDKCore, hookOptions?: RequestOptions): { mutationKey: MutationKey; mutationFn: (variables: LlmFeedbackBatchGetResponseFeedbackMutationVariables) => Promise; }; //# sourceMappingURL=llmFeedbackBatchGetResponseFeedback.d.ts.map