/** * Access token containing information for authentication */ export declare class AccessToken { userName: string; password: string; rememberMe: boolean; /** * Creates instance of `AccessToken` * @param userName - username used for authentication * @param password - password used for authentication * @param rememberMe - indication that user should be remembered for next access */ constructor(userName: string, password: string, rememberMe: boolean); } //# sourceMappingURL=accessToken.d.ts.map