import type * as Interfaces from '@puregram/api'; /** force reply keyboard */ export declare class ForceReply { private isSelective; private placeholder?; /** use this parameter if you want to show the keyboard to specific users only */ selective(selective?: boolean): this; /** the placeholder to be shown in the input field when the keyboard is active */ setPlaceholder(placeholder: string): this; /** returns JSON which is compatible with Telegram's `ForceReply` interface */ toJSON(): Interfaces.TelegramForceReply; toString(): string; } //# sourceMappingURL=force-reply.d.ts.map