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 { buildLlmModelsListRegistryQuery, LlmModelsListRegistryQueryData, prefetchLlmModelsListRegistry, queryKeyLlmModelsListRegistry } from "./llmModelsListRegistry.core.js"; export { buildLlmModelsListRegistryQuery, type LlmModelsListRegistryQueryData, prefetchLlmModelsListRegistry, queryKeyLlmModelsListRegistry, }; export type LlmModelsListRegistryQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List the organization's active model registry * * @remarks * Single management view of every active name with source-qualified definition, health, price, and activation audit details. */ export declare function useLlmModelsListRegistry(options?: QueryHookOptions): UseQueryResult; /** * List the organization's active model registry * * @remarks * Single management view of every active name with source-qualified definition, health, price, and activation audit details. */ export declare function useLlmModelsListRegistrySuspense(options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmModelsListRegistryData(client: QueryClient, data: LlmModelsListRegistryQueryData): LlmModelsListRegistryQueryData | undefined; export declare function invalidateAllLlmModelsListRegistry(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmModelsListRegistry.d.ts.map