import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike, Chat } from '../../types/index.js';
/**
 * Get basic information about a chat.
 *
 * @param chatId  ID of the chat, its username or invite link
 * @throws MtArgumentError
 *   In case you are trying to get info about private chat that you haven't joined.
 *   Use {@link getChatPreview} instead.
 */
export declare function getChat(client: ITelegramClient, chatId: InputPeerLike): Promise<Chat>;
