import { ITelegramClient } from '../../client.types.js'; import { ForumTopic, InputPeerLike } from '../../types/index.js'; /** * Delete a forum topic and all its history * * @param chat Chat or user ID, username, phone number, `"me"` or `"self"` * @param topicId ID of the topic (i.e. its top message ID) */ export declare function deleteForumTopicHistory(client: ITelegramClient, chat: InputPeerLike, topicId: number | ForumTopic, params?: { /** * Whether to dispatch updates that will be generated by this call. * Doesn't follow `disableNoDispatch` */ shouldDispatch?: true; }): Promise;