import { KeyboardButtonTypeUnion } from '@airgram-dev/core'; /** Represents a single button in a bot keyboard */ export declare class KeyboardButtonBaseModel { _: 'keyboardButton'; /** Text of the button */ text: string; /** Type of the button */ type: KeyboardButtonTypeUnion; }