/** * A button that opens a specified URL and automatically logs in in current user if * they allowed to do that */ export declare class InlineKeyboardButtonTypeLoginUrlBaseModel { _: 'inlineKeyboardButtonTypeLoginUrl'; /** HTTP URL to open */ url: string; /** Unique button identifier */ id: number; /** If non-empty, new text of the button in forwarded messages */ forwardText: string; }