import { IGraphQLError } from '../interfaces/index'; export interface CombinedError extends Error { } export declare class CombinedError { name: string; message: string; graphQLErrors: Error[]; networkError?: Error; response?: any; constructor({networkError, graphQLErrors, response}: { networkError?: Error; graphQLErrors?: Array; response?: any; }); }