import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike } from '../../types/index.js';
/**
 * Toggle whether peer's stories are archived (hidden) or not.
 *
 * This **does not** archive the chat with that peer, only stories.
 */
export declare function togglePeerStoriesArchived(client: ITelegramClient, peerId: InputPeerLike, archived: boolean): Promise<void>;
