/** Represents commands supported by a bot */ export declare class BotCommandBaseModel { _: 'botCommand'; /** Text of the bot command */ command: string; /** Description of the bot command */ description: string; }