import { QueryClient, QueryFunctionContext, QueryKey } from "@tanstack/react-query"; import { SDKCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export type ComputeTenantsGetComputeTenantQueryData = operations.GetComputeTenantResponse; export declare function prefetchComputeTenantsGetComputeTenant(queryClient: QueryClient, client$: SDKCore, request: operations.GetComputeTenantRequest, options?: RequestOptions): Promise; export declare function buildComputeTenantsGetComputeTenantQuery(client$: SDKCore, request: operations.GetComputeTenantRequest, options?: RequestOptions): { queryKey: QueryKey; queryFn: (context: QueryFunctionContext) => Promise; }; export declare function queryKeyComputeTenantsGetComputeTenant(orgId: string, parameters: { xOnBehalfOf?: string | undefined; }): QueryKey; //# sourceMappingURL=computeTenantsGetComputeTenant.core.d.ts.map