import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike, ChatInviteLink } from '../../types/index.js';
/**
 * Get detailed information about an invite link
 *
 * @param chatId  Chat ID
 * @param link  The invite link
 */
export declare function getInviteLink(client: ITelegramClient, chatId: InputPeerLike, link: string): Promise<ChatInviteLink>;
