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 LlmPromptsListVersionsQueryData = components.ListVersionsResponse; export declare function prefetchLlmPromptsListVersions(queryClient: QueryClient, client$: SDKCore, request: operations.ListPromptVersionsRequest, options?: RequestOptions): Promise; export declare function buildLlmPromptsListVersionsQuery(client$: SDKCore, request: operations.ListPromptVersionsRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyLlmPromptsListVersions(id: string, parameters: { limit?: number | undefined; order?: operations.ListPromptVersionsQueryParamOrder | undefined; xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=llmPromptsListVersions.core.d.ts.map