import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike, InputReaction } from '../../types/index.js'; /** * Send (or remove) a reaction to a story */ export declare function sendStoryReaction(client: ITelegramClient, params: { peerId: InputPeerLike; storyId: number; reaction: InputReaction; /** * Whether to add this reaction to recently used */ addToRecent?: boolean; }): Promise;