import { InlineKeyboardButtonTypeUnion } from '@airgram-dev/core'; /** Represents a single button in an inline keyboard */ export declare class InlineKeyboardButtonBaseModel { _: 'inlineKeyboardButton'; /** Text of the button */ text: string; /** Type of the button */ type: InlineKeyboardButtonTypeUnion; }