/** Describes a keyboard button type */ export declare type KeyboardButtonTypeUnion = KeyboardButtonTypeText | KeyboardButtonTypeRequestPhoneNumber | KeyboardButtonTypeRequestLocation; /** A simple button, with text that should be sent when the button is pressed */ export interface KeyboardButtonTypeText { _: 'keyboardButtonTypeText'; } /** * A button that sends the user's phone number when pressed; available only in private * chats */ export interface KeyboardButtonTypeRequestPhoneNumber { _: 'keyboardButtonTypeRequestPhoneNumber'; } /** A button that sends the user's location when pressed; available only in private chats */ export interface KeyboardButtonTypeRequestLocation { _: 'keyboardButtonTypeRequestLocation'; }