import { ForkEffect } from 'redux-saga/effects'; import { SchemaFetcher } from '../../components/Playground/SchemaFetcher'; export declare function setSubscriptionEndpoint(endpoint: any): void; export interface LinkCreatorProps { endpoint: string; headers?: Headers; credentials?: string; } export interface Headers { [key: string]: string | number | null; } export declare const defaultLinkCreator: (session: LinkCreatorProps, subscriptionEndpoint?: string | undefined) => { link: any; subscriptionClient?: any; }; export declare let schemaFetcher: SchemaFetcher; export declare function setLinkCreator(newLinkCreator: any): void; export declare function formatError(error: any, fetchingSchema?: boolean): any; export declare const fecthingSagas: any[]; export { ForkEffect };