import type { TypedDocumentNode } from "@graphql-typed-document-node/core"; export interface GraphQLResponse { data?: TData; errors?: Array<{ message: string; extensions?: { code?: string; [key: string]: unknown; }; [key: string]: unknown; }>; } export interface PlainGraphQLClientOptions { apiKey: string; apiUrl?: string; } export declare class PlainGraphQLClient { private apiKey; private apiUrl; constructor(options: PlainGraphQLClientOptions); request>(document: TypedDocumentNode, variables?: TVariables): Promise; } //# sourceMappingURL=graphql-client.d.ts.map