/** remove keyboard */ export declare class RemoveKeyboard { private isSelective; /** use this parameter if you want to show the keyboard to specific users only */ selective(selective?: boolean): this; /** returns JSON which is compatible with Telegram's `RemoveKeyboard` interface */ toJSON(): { remove_keyboard: true; selective: boolean; }; toString(): string; } //# sourceMappingURL=remove.d.ts.map