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 LlmMemoryStoresCreateEntryMutationVariables = { request: operations.CreateMemoryEntryRequest; options?: RequestOptions; }; export type LlmMemoryStoresCreateEntryMutationData = components.MemoryEntry; export type LlmMemoryStoresCreateEntryMutationError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Create memory entry */ export declare function useLlmMemoryStoresCreateEntryMutation(options?: MutationHookOptions): UseMutationResult; export declare function mutationKeyLlmMemoryStoresCreateEntry(): MutationKey; export declare function buildLlmMemoryStoresCreateEntryMutation(client$: SDKCore, hookOptions?: RequestOptions): { mutationKey: MutationKey; mutationFn: (variables: LlmMemoryStoresCreateEntryMutationVariables) => Promise; }; //# sourceMappingURL=llmMemoryStoresCreateEntry.d.ts.map