import { BotCommand } from '@airgram-dev/core'; /** Provides information about a bot and its supported commands */ export declare class BotInfoBaseModel { _: 'botInfo'; /** Long description shown on the user info page */ description: string; /** A list of commands supported by the bot */ commands: BotCommand[]; }