import { Session } from './legacy-types';
export interface User {
    id: string;
    providerId?: string;
    websocketId?: string;
    session: Session;
    route: string;
    isOnline: boolean;
    locationInfo: string;
}
