import type { IVocalise } from './vocalise'; import { Joi } from '../helpers'; export declare const FINISH = "VOCALISE/FINISH"; export interface IFinishAction { type: typeof FINISH; payload: IVocalise; } export declare const finishActionSchema: Joi.ObjectSchema; export declare const finish: import("../helpers").IActionCreator;