import { MaybeArray } from '../../../types/utils.js'; import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike, Story } from '../../types/index.js'; /** * Get one or more stories by their IDs * * @param peerId Peer ID whose stories to fetch * @param storyIds Story IDs */ export declare function getStoriesById(client: ITelegramClient, peerId: InputPeerLike, storyIds: MaybeArray): Promise;