import Joi from 'joi'; import type { IShowOptionsPayload } from './showOptionsAction'; export declare const OPTIONS_DISPLAYED = "USER_INPUT/OPTIONS_DISPLAYED"; export interface IOptionsDisplayedAction { type: typeof OPTIONS_DISPLAYED; payload: IShowOptionsPayload; } export declare const optionsDisplayedActionSchema: Joi.ObjectSchema; export declare const optionsDisplayed: import("../helpers").ITopicBoundActionCreator;