import { MaybeArray } from '../../../types/utils.js';
import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike, StoryInteractions } from '../../types/index.js';
/**
 * Get brief information about stories interactions.
 *
 * The result will be in the same order as the input IDs
 */
export declare function getStoriesInteractions(client: ITelegramClient, peerId: InputPeerLike, storyIds: MaybeArray<number>): Promise<StoryInteractions[]>;
