import { MaybeArray } from '../../../types/utils.js';
import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike, User } from '../../types/index.js';
/**
 * Get information about multiple users.
 * You can retrieve up to 200 users at once.
 *
 * @param ids  Users' identifiers. Can be ID, username, phone number, `"me"`, `"self"` or TL object
 * @returns  The list of users in the same order as the input
 */
export declare function getUsers(client: ITelegramClient, ids: MaybeArray<InputPeerLike>): Promise<(User | null)[]>;
