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"; import * as operations from "../models/operations/index.js"; export type LlmSkillsListQueryData = components.SkillList; export declare function prefetchLlmSkillsList(queryClient: QueryClient, client$: SDKCore, request: operations.ListSkillsRequest, options?: RequestOptions): Promise; export declare function buildLlmSkillsListQuery(client$: SDKCore, request: operations.ListSkillsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyLlmSkillsList(parameters: { after?: string | undefined; limit?: number | undefined; order?: operations.ListSkillsQueryParamOrder | undefined; xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=llmSkillsList.core.d.ts.map