/* eslint-disable import/prefer-default-export */ export interface User { id: string; email: string; } export const defaultCurrentUser = null;