import { ITelegramClient } from '../../client.types.js';
import { Message } from '../../types/messages/index.js';
/**
 * Given a message link (e.g. `t.me/durov/1`), fetch the relevant message.
 */
export declare function getMessageByLink(client: ITelegramClient, link: string): Promise<Message | null>;
