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 { buildLlmModelsListCatalogModelAccessQuery, LlmModelsListCatalogModelAccessQueryData, prefetchLlmModelsListCatalogModelAccess, queryKeyLlmModelsListCatalogModelAccess } from "./llmModelsListCatalogModelAccess.core.js"; export { buildLlmModelsListCatalogModelAccessQuery, type LlmModelsListCatalogModelAccessQueryData, prefetchLlmModelsListCatalogModelAccess, queryKeyLlmModelsListCatalogModelAccess, }; export type LlmModelsListCatalogModelAccessQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List organizations with access to a cluster model * * @remarks * Cluster operator reverse lookup showing availability and activation for one cluster catalog id. */ export declare function useLlmModelsListCatalogModelAccess(request: operations.ListModelCatalogAccessRequest, options?: QueryHookOptions): UseQueryResult; /** * List organizations with access to a cluster model * * @remarks * Cluster operator reverse lookup showing availability and activation for one cluster catalog id. */ export declare function useLlmModelsListCatalogModelAccessSuspense(request: operations.ListModelCatalogAccessRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmModelsListCatalogModelAccessData(client: QueryClient, queryKeyBase: [parameters: { modelId: string; }], data: LlmModelsListCatalogModelAccessQueryData): LlmModelsListCatalogModelAccessQueryData | undefined; export declare function invalidateLlmModelsListCatalogModelAccess(client: QueryClient, queryKeyBase: TupleToPrefixes<[parameters: { modelId: string; }]>, filters?: Omit): Promise; export declare function invalidateAllLlmModelsListCatalogModelAccess(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmModelsListCatalogModelAccess.d.ts.map