import type { IVocalise } from './vocalise'; import { Joi } from '../helpers'; export declare const NEW = "VOCALISE/NEW"; export interface INewAction { type: typeof NEW; payload: IVocalise; } export declare const newActionSchema: Joi.ObjectSchema; export declare const newVocalise: import("../helpers").IActionCreator;