import { Joi } from '../helpers'; import type { IInteractionModePayload } from './interactionMode'; export declare const REQUEST_INTERACTION_MODE = "DIALOGUE/REQUEST_INTERACTION_MODE"; export interface IRequestInteractionModeAction { type: typeof REQUEST_INTERACTION_MODE; payload: IInteractionModePayload; } export declare const requestInteractionModeActionSchema: Joi.ObjectSchema; export declare const requestInteractionMode: import("../helpers").ITopicBoundActionCreator;