import { XComponent } from '../XComponent'; import { XConnectionStatus, XConnectionStatusProps } from './XConnectionStatus'; export declare type XNetworkProps = { rooms: XConnectionStatusProps[]; }; export declare class XNetwork extends XComponent { connections: XConnectionStatus[]; constructor(); update({ rooms }: XNetworkProps): void; }