import type { Revision } from './configModel'; import { Joi } from '../helpers'; export declare const INIT = "CONFIG/INIT"; export interface IInitActionPayload { consoleId: string; authToken: string; configRevision: Revision; } export declare const initActionPayloadSchema: Joi.ObjectSchema; export interface IInitAction { type: typeof INIT; payload: IInitActionPayload; } export declare const initActionSchema: Joi.ObjectSchema; export declare const init: import("../helpers").IActionCreator;