import { ApiError } from './apiError';
import { AuthenticationErrorReason } from './authenticationErrorReason';
export interface AuthenticationError extends ApiError {
    reason?: AuthenticationErrorReason;
}
