import type { IVocalise } from './vocalise'; import { Joi } from '../helpers'; export declare const PREPARE = "VOCALISE/PREPARE"; export interface IPrepareAction { type: typeof PREPARE; payload: IVocalise; } export declare const prepareActionSchema: Joi.ObjectSchema; export declare const prepare: import("../helpers").IActionCreator;