interface Response { status: string; statusText: string; } export default class MessageUtils { static getLoginErrorMessage(response?: Response): string; } export {};