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