import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike } from '../../types/index.js';
/**
 * Mark all reactions in chat as read.
 *
 * @param chatId  Chat ID
 */
export declare function readReactions(client: ITelegramClient, chatId: InputPeerLike, params?: {
    /**
     * Whether to dispatch updates that will be generated by this call.
     * Doesn't follow `disableNoDispatch`
     */
    shouldDispatch?: true;
}): Promise<void>;
