import * as parser from 'graphql/language/parser'; import * as printer from 'graphql/language/printer'; import { MockResponse } from './mock'; export declare const parse: typeof parser.parse; export declare const stringify: typeof printer.print; export declare const normalize: (query: string | object) => string; export declare const isCompleted: (response: MockResponse) => boolean; export declare const fillIn: (query: string, variables?: any) => string; export declare const deepEqual: (a: any, b: any) => boolean;