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 { buildLlmVectorStoresGetFileContentQuery, LlmVectorStoresGetFileContentQueryData, prefetchLlmVectorStoresGetFileContent, queryKeyLlmVectorStoresGetFileContent } from "./llmVectorStoresGetFileContent.core.js"; export { buildLlmVectorStoresGetFileContentQuery, type LlmVectorStoresGetFileContentQueryData, prefetchLlmVectorStoresGetFileContent, queryKeyLlmVectorStoresGetFileContent, }; export type LlmVectorStoresGetFileContentQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Retrieve parsed file content * * @remarks * Retrieves the complete parsed contents of a file within a vector store. */ export declare function useLlmVectorStoresGetFileContent(request: operations.GetVectorStoreFileContentRequest, options?: QueryHookOptions): UseQueryResult; /** * Retrieve parsed file content * * @remarks * Retrieves the complete parsed contents of a file within a vector store. */ export declare function useLlmVectorStoresGetFileContentSuspense(request: operations.GetVectorStoreFileContentRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmVectorStoresGetFileContentData(client: QueryClient, queryKeyBase: [ vectorStoreId: string, fileId: string, parameters: { xOnBehalfOf?: string | undefined; } ], data: LlmVectorStoresGetFileContentQueryData): LlmVectorStoresGetFileContentQueryData | undefined; export declare function invalidateLlmVectorStoresGetFileContent(client: QueryClient, queryKeyBase: TupleToPrefixes<[ vectorStoreId: string, fileId: string, parameters: { xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmVectorStoresGetFileContent(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmVectorStoresGetFileContent.d.ts.map