import { Joi } from '../helpers'; export declare const ASLEEP: "SYSTEM/ASLEEP"; export interface IAsleepActionPayload { consoleId: string; } export declare const asleepActionPayloadSchema: Joi.ObjectSchema; export interface IAsleepAction { type: typeof ASLEEP; payload: IAsleepActionPayload; } export declare const asleepActionSchema: Joi.ObjectSchema; export declare const asleep: import("../helpers").ITopicBoundActionCreator;