import { ITelegramClient } from '../../client.types.js';
import { InputText } from '../../types/misc/entities.js';
import { WebPageMedia } from '../../types/media/web-page.js';
/**
 * Get a preview of a web page contained in the message
 *
 * @param text  Text of the message, or simply the link for which the preview should be retrieved
 */
export declare function getWebPagePreview(client: ITelegramClient, text: InputText): Promise<WebPageMedia | null>;
