import type { IVocalise } from './vocalise'; import { Joi } from '../helpers'; export declare const DISPLAY = "VOCALISE/DISPLAY"; export interface IDisplayAction { type: typeof DISPLAY; payload: IVocalise; } export declare const displayActionSchema: Joi.ObjectSchema; export declare const display: import("../helpers").IActionCreator;