import Joi from 'joi'; export declare const START = "VISION/START"; export interface IStartAction { type: typeof START; } export declare const startActionSchema: Joi.ObjectSchema; export declare const start: import("../helpers").IActionCreator;