/** * Management GraphQL transport for serialization commands. * * Thin wrapper over `src/shared/graphql.ts` — supplies the Management * service path and label. Parallels `src/recipe/api/graphql.ts` which * targets the Authoring endpoint. */ import type { SitecoreApiClientOptions } from "./types.js"; import { type GraphQLRequestOptions } from "../../shared/graphql.js"; export type { GraphQLRequestOptions }; export declare const runGraphQL: (environment: SitecoreApiClientOptions, query: string, variables?: Record, options?: GraphQLRequestOptions) => Promise;