export function isGraphQlErrorObject(val: any): boolean; export default class GraphQlError { static fromJson(json: any): GraphQlError; static newOther(msg: any): GraphQlError; constructor(kind: any, errors: any, data?: null); kind: any; errors: any; data: any; get msg(): any; toString(): string; __isGraphQlErrorObject__(): void; } //# sourceMappingURL=GraphQlError.d.ts.map