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 { buildLlmMemoryStoresGetEntryQuery, LlmMemoryStoresGetEntryQueryData, prefetchLlmMemoryStoresGetEntry, queryKeyLlmMemoryStoresGetEntry } from "./llmMemoryStoresGetEntry.core.js"; export { buildLlmMemoryStoresGetEntryQuery, type LlmMemoryStoresGetEntryQueryData, prefetchLlmMemoryStoresGetEntry, queryKeyLlmMemoryStoresGetEntry, }; export type LlmMemoryStoresGetEntryQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Retrieve memory entry */ export declare function useLlmMemoryStoresGetEntry(request: operations.GetMemoryEntryRequest, options?: QueryHookOptions): UseQueryResult; /** * Retrieve memory entry */ export declare function useLlmMemoryStoresGetEntrySuspense(request: operations.GetMemoryEntryRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmMemoryStoresGetEntryData(client: QueryClient, queryKeyBase: [ memoryStoreId: string, entryId: string, parameters: { xOnBehalfOf?: string | undefined; } ], data: LlmMemoryStoresGetEntryQueryData): LlmMemoryStoresGetEntryQueryData | undefined; export declare function invalidateLlmMemoryStoresGetEntry(client: QueryClient, queryKeyBase: TupleToPrefixes<[ memoryStoreId: string, entryId: string, parameters: { xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmMemoryStoresGetEntry(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmMemoryStoresGetEntry.d.ts.map