import { Joi } from '../helpers'; export declare const AWAKE: "SYSTEM/AWAKE"; export interface IAwakeActionPayload { consoleId: string; } export declare const awakeActionPayloadSchema: Joi.ObjectSchema; export interface IAwakeAction { type: typeof AWAKE; payload: IAwakeActionPayload; } export declare const awakeActionSchema: Joi.ObjectSchema; export declare const awake: import("../helpers").ITopicBoundActionCreator;