import { Joi } from '../helpers'; export declare const HIL_STATUS: "PRESENCE/HIL_STATUS"; export interface IHilStatusAction { type: typeof HIL_STATUS; payload: { numberOfHilOnline: number; timestamp: number; }; } export declare const hilStatusActionSchema: Joi.ObjectSchema; /** * Broad-casted to all consoles when number of HIL changes */ export declare const hilStatus: import("../helpers").ITopicBoundActionCreator;