import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike, Chat } from '../../types/index.js';
/**
 * Get basic information about multiple chats.
 *
 * @param chatIds  Chat identifiers. Can be ID, username or TL object
 * @returns  The list of chats in the same order as the input
 */
export declare function getChats(client: ITelegramClient, chatIds: InputPeerLike[]): Promise<(Chat | null)[]>;
