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 LlmExtractGetSchemaQueryData = components.SchemaGetResponse; export declare function prefetchLlmExtractGetSchema(queryClient: QueryClient, client$: SDKCore, request: operations.GetExtractSchemaRequest, options?: RequestOptions): Promise; export declare function buildLlmExtractGetSchemaQuery(client$: SDKCore, request: operations.GetExtractSchemaRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyLlmExtractGetSchema(schemaId: string, parameters: { xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=llmExtractGetSchema.core.d.ts.map