import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike, ChatInviteLink } from '../../types/index.js';
/**
 * Generate a new primary invite link for a chat,
 * old primary link is revoked.
 *
 * > **Note**: each administrator has their own primary invite link,
 * > and bots by default don't have one.
 *
 * @param chatId  Chat IDs
 */
export declare function exportInviteLink(client: ITelegramClient, chatId: InputPeerLike): Promise<ChatInviteLink>;
