import { KeyboardButton } from '@airgram-dev/core'; /** Contains a custom keyboard layout to quickly reply to bots */ export declare class ReplyMarkupShowKeyboardBaseModel { _: 'replyMarkupShowKeyboard'; /** A list of rows of bot keyboard buttons */ rows: KeyboardButton[][]; /** True, if the client needs to resize the keyboard vertically */ resizeKeyboard: boolean; /** True, if the client needs to hide the keyboard after use */ oneTime: boolean; /** * True, if the keyboard must automatically be shown to the current user. For outgoing * messages, specify true to show the keyboard only for the mentioned users and for * the target user of a reply */ isPersonal: boolean; }