import Joi from 'joi'; import type { IVocalise } from './vocalise'; export declare const HIDE = "VOCALISE/HIDE"; export interface IHideAction { type: typeof HIDE; payload: IVocalise; } export declare const hideActionSchema: Joi.ObjectSchema; export declare const hide: import("../helpers").IActionCreator;