import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { SDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export type LlmModelsListRegistryQueryData = components.RegistryManagementListResponse; export declare function prefetchLlmModelsListRegistry(queryClient: QueryClient, client$: SDKCore, options?: RequestOptions): Promise; export declare function buildLlmModelsListRegistryQuery(client$: SDKCore, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyLlmModelsListRegistry(): QueryKey; //# sourceMappingURL=llmModelsListRegistry.core.d.ts.map