import { ApiV3 } from '../Types'; import { GqlHttpResponse } from '../Types/GraphQL'; /** * Queries the GraphQL API. * * @param apiV3 the v3 API instance to use * @param query the GQL query * @param variables named variables to substitute into the query, if any * @returns {GqlHttpResponse} if successful * @throws {HttpError} if it receives a non-2XX result */ export declare function graphql(apiV3: ApiV3.API, query: string, variables?: { [key: string]: any; }): Promise>; //# sourceMappingURL=graphql.d.ts.map