import { ITelegramClient } from '../../client.types.js'; import { PeerStories } from '../../types/index.js'; import { getAllStories } from './get-all-stories.js'; /** * Iterate over all stories (e.g. to load the top bar) * * Wrapper over {@link getAllStories} */ export declare function iterAllStories(client: ITelegramClient, params?: Parameters[1] & { /** * Maximum number of stories to fetch * * @default Infinity */ limit?: number; }): AsyncIterableIterator;