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 { QueryHookOptions, SuspenseQueryHookOptions } from "./_types.js"; import { buildLlmModelsListCatalogQuery, LlmModelsListCatalogQueryData, prefetchLlmModelsListCatalog, queryKeyLlmModelsListCatalog } from "./llmModelsListCatalog.core.js"; export { buildLlmModelsListCatalogQuery, type LlmModelsListCatalogQueryData, prefetchLlmModelsListCatalog, queryKeyLlmModelsListCatalog, }; export type LlmModelsListCatalogQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List the organization's model catalog * * @remarks * Lists all BYO, serving, and cluster-access definitions with activation state, blocker, health, and price preview. */ export declare function useLlmModelsListCatalog(options?: QueryHookOptions): UseQueryResult; /** * List the organization's model catalog * * @remarks * Lists all BYO, serving, and cluster-access definitions with activation state, blocker, health, and price preview. */ export declare function useLlmModelsListCatalogSuspense(options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmModelsListCatalogData(client: QueryClient, data: LlmModelsListCatalogQueryData): LlmModelsListCatalogQueryData | undefined; export declare function invalidateAllLlmModelsListCatalog(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmModelsListCatalog.d.ts.map