import type { ExtractValues } from '../helpers'; import { Joi } from '../helpers'; export declare const SLEEP: "SYSTEM/SLEEP"; export declare const requestedBy: readonly ["admin", "user", "system"]; export declare type RequestedBy = ExtractValues; export interface ISleepAction { type: typeof SLEEP; payload: { consoleId: string; timestamp: number; requestedBy: RequestedBy; }; } export declare const sleepActionSchema: Joi.ObjectSchema; export declare const sleep: import("../helpers").ITopicBoundActionCreator;