import { EventEmitter } from "../../stencil-public-runtime"; import { Graphene } from "../../libs/graphene"; import { GrapheneAPI } from "../../global/api"; export declare class GrapheneProvider { toggleBackground: EventEmitter; errorToast: EventEmitter; successToast: EventEmitter; api: GrapheneAPI; graphene: Graphene; isConnected: boolean; _token: string; _baseUrl: string; isAuthorized: boolean; apiDown: boolean; endPoint: string; baseUrl: string; token?: string; componentWillLoad(): Promise; onApiError(e: { detail: any; }): void; onLogin({ detail }: CustomEvent<{ name: string; password: string; }>): Promise; onLogout(): Promise; connectToAPI(token?: string): Promise; render(): any; }