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 { buildLlmVectorStoresGetFileQuery, LlmVectorStoresGetFileQueryData, prefetchLlmVectorStoresGetFile, queryKeyLlmVectorStoresGetFile } from "./llmVectorStoresGetFile.core.js"; export { buildLlmVectorStoresGetFileQuery, type LlmVectorStoresGetFileQueryData, prefetchLlmVectorStoresGetFile, queryKeyLlmVectorStoresGetFile, }; export type LlmVectorStoresGetFileQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Retrieve a vector store file * * @remarks * Retrieves detailed information about a specific file within a vector store. */ export declare function useLlmVectorStoresGetFile(request: operations.GetVectorStoreFileRequest, options?: QueryHookOptions): UseQueryResult; /** * Retrieve a vector store file * * @remarks * Retrieves detailed information about a specific file within a vector store. */ export declare function useLlmVectorStoresGetFileSuspense(request: operations.GetVectorStoreFileRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmVectorStoresGetFileData(client: QueryClient, queryKeyBase: [ vectorStoreId: string, fileId: string, parameters: { xOnBehalfOf?: string | undefined; } ], data: LlmVectorStoresGetFileQueryData): LlmVectorStoresGetFileQueryData | undefined; export declare function invalidateLlmVectorStoresGetFile(client: QueryClient, queryKeyBase: TupleToPrefixes<[ vectorStoreId: string, fileId: string, parameters: { xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmVectorStoresGetFile(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmVectorStoresGetFile.d.ts.map