import { ITelegramClient } from '../../client.types.js'; import { StoriesStealthMode } from '../../types/stories/stealth-mode.js'; /** * Hide own stories views (activate so called "stealth mode") * * Currently has a cooldown of 1 hour, and throws FLOOD_WAIT error if it is on cooldown. */ export declare function hideMyStoriesViews(client: ITelegramClient, params?: { /** * Whether to hide views from the last 5 minutes * * @default true */ past?: boolean; /** * Whether to hide views for the next 25 minutes * * @default true */ future?: boolean; }): Promise;