/** * BotDescription * This object represents the bot's description. * @see https://core.telegram.org/bots/api#botdescription */ export type BotDescription = { /** * The bot's description */ description: string; };