import Joi from 'joi'; import type { RequestedBy } from './showKeyboardAction'; export declare const SHOW_OPTIONS = "USER_INPUT/SHOW_OPTIONS"; export interface IOption { text: string; intent: string; } export declare const optionSchema: Joi.ObjectSchema; export interface IShowOptionsPayload { conversationId: string; message: string; requestedBy?: RequestedBy; options: IOption[]; } export declare const showOptionsPayloadSchema: Joi.ObjectSchema; export interface IShowOptionsAction { type: typeof SHOW_OPTIONS; payload: IShowOptionsPayload; } export declare const showOptionsActionSchema: Joi.ObjectSchema; export declare const showOptionsParamsSchema: Joi.ObjectSchema; export declare const showOptions: import("../helpers").IActionCreator;