import Engine from '../../engine/Engine'; export interface EngineModule { engine: Engine; } export declare const defaultEngineState: EngineModule; export declare const engineModule: { name: string; state: EngineModule; actions: { initEngine: (endpoint: any, token: any) => { type: string; endpoint: any; token: any; }; }; mutations: { NEW_ENGINE: (state: any, action: any) => void; }; selectors: { getEngine: (state: any) => EngineModule; engineSchema: (state: EngineModule) => import("graphql").GraphQLSchema; }; sagas: any; };