export interface RemoteClient { id: string username: string } export interface ChadClient extends RemoteClient { isMe: boolean inputMuted?: boolean outputMuted?: boolean }