import { AuthenticationService } from "../../services/authentication/authentication.service"; export declare class LoginController { private _authenticationService; constructor(_authenticationService: AuthenticationService); /** * Will login the user in and call the API * @param username The username * @param password The password */ login(username: string, password: string): Promise; /** * This renews the authentication token */ refreshToken(): Promise; }