export interface AuthToken {
    roomId: string;
    userId: string;
    role: string;
}
export default function decodeJWT(token?: string): AuthToken;
