/** Contains a bot's answer to a callback query */ export declare class CallbackQueryAnswerBaseModel { _: 'callbackQueryAnswer'; /** Text of the answer */ text: string; /** True, if an alert should be shown to the user instead of a toast notification */ showAlert: boolean; /** URL to be opened */ url: string; }