import { ITelegramClient } from '../../client.types.js'; import { Message } from '../../types/messages/index.js'; /** * For messages containing a reply, fetch the message that is being replied. * * Note that even if a message has {@link replyToMessage}, * the message itself may have been deleted, in which case * this method will also return `null`. */ export declare function getReplyTo(client: ITelegramClient, message: Message): Promise;