import Joi from 'joi'; export declare const RECOGNITION_STOP = "VISION/RECOGNITION_STOP"; export interface IRecognitionStopAction { type: typeof RECOGNITION_STOP; } export declare const recognitionStopActionSchema: Joi.ObjectSchema; export declare const recognitionStop: import("../helpers").IActionCreator;