import { MaybeArray } from '../../../types/utils.js'; import { ITelegramClient } from '../../client.types.js'; import { InputPeerLike } from '../../types/index.js'; /** * Delete a story * * @returns IDs of stories that were removed */ export declare function deleteStories(client: ITelegramClient, params: { /** * Story IDs to delete */ ids: MaybeArray; /** * Peer ID whose stories to delete * * @default `self` */ peer?: InputPeerLike; }): Promise;