import Observable from 'zen-observable-ts'; import { GraphQLRequest, Operation } from './types'; import { ApolloLink } from './link'; export declare function validateOperation(operation: GraphQLRequest): GraphQLRequest; export declare class LinkError extends Error { link: ApolloLink; constructor(message?: string, link?: ApolloLink); } export declare function isTerminating(link: ApolloLink): boolean; export declare function toPromise(observable: Observable): Promise; export declare const makePromise: typeof toPromise; export declare function fromPromise(promise: Promise): Observable; export declare function fromError(errorValue: any): Observable; export declare function transformOperation(operation: GraphQLRequest): GraphQLRequest; export declare function createOperation(starting: any, operation: GraphQLRequest): Operation; export declare function getKey(operation: GraphQLRequest): string;