import Joi from 'joi'; import type { RequestFieldKey } from './showKeyboardAction'; export interface IShowKeyboardParams { conversationId: string; inputKey: RequestFieldKey; label: string; placeholder?: string; message?: string; } export declare const showKeyboardParamsSchema: Joi.ObjectSchema;