/***************************************
 * Title: Login.ts
 * Description: TODO
 * Author: Wout Slabbinck (wout.slabbinck@ugent.be)
 * Created on 26/11/2021
 *****************************************/
import { Session } from "@rubensworks/solid-client-authn-isomorphic";
export declare function login(): Promise<void>;
/**
 * Function only stops when a config file is created -> indicating that a user is logged in
 */
export declare function isLoggedin(): Promise<void>;
export declare function getSession(): Promise<Session>;
