export declare class Occupant { uuid: string; } export declare class ChannelInfo { name: string; occupancy: number; occupants: Occupant[]; } export declare class HereNowResponse { totalChannels: number; channels: { [id: string]: ChannelInfo; }; }