import { Joi } from '../helpers'; export declare const PING = "APPS/PING"; export declare const pingPayloadSchema: Joi.ObjectSchema; export declare const pingActionSchema: Joi.ObjectSchema; export interface IPingPayload { id: string; timestamp: number; } export interface IPingAction { type: typeof PING; payload: IPingPayload; } export declare const ping: import("../helpers").IActionCreator;