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