import { Joi } from '../helpers'; import type { ISubmitKeyboardParams } from './submitKeyboard'; export declare const KEYBOARD_RESPONSE = "USER_INPUT/KEYBOARD_RESPONSE"; declare type KeyboardResponseParams = ISubmitKeyboardParams; export interface IKeyboardResponseAction { type: typeof KEYBOARD_RESPONSE; payload: KeyboardResponseParams; } export declare const keyboardResponseActionSchema: Joi.ObjectSchema; export declare const keyboardResponse: import("../helpers").IActionCreator; export {};