import { ITelegramClient } from '../../client.types.js';
import { ArrayPaginated, InputMessageId, InputReaction, PeerReaction } from '../../types/index.js';
export type GetReactionUsersOffset = string;
/**
 * Get users who have reacted to the message.
 *
 * @param params
 */
export declare function getReactionUsers(client: ITelegramClient, params: InputMessageId & {
    /**
     * Get only reactions with the specified emoji
     */
    emoji?: InputReaction;
    /**
     * Limit the number of users returned.
     *
     * @default  100
     */
    limit?: number;
    /**
     * Offset for pagination
     */
    offset?: GetReactionUsersOffset;
}): Promise<ArrayPaginated<PeerReaction, GetReactionUsersOffset>>;
