import { ITelegramClient } from '../../client.types.js'; import { ArrayPaginated, InputPeerLike, Story } from '../../types/index.js'; /** * Get profile stories */ export declare function getProfileStories(client: ITelegramClient, peerId: InputPeerLike, params?: { /** * Kind of stories to fetch * - `pinned` - stories pinned to the profile and visible to everyone * - `archived` - "archived" stories that can later be pinned, only visible to the owner * * @default `pinned` */ kind?: 'pinned' | 'archived'; /** * Offset ID for pagination */ offsetId?: number; /** * Maximum number of stories to fetch * * @default 100 */ limit?: number; }): Promise>;