import Joi from 'joi'; export declare const AUTH = "AUTH/AUTH"; export interface IAuthPayload { token: string; } export declare const authActionSchema: Joi.ObjectSchema; export interface IAuthAction { type: typeof AUTH; payload: IAuthPayload; } export declare const auth: import("../helpers").IActionCreator;