import { ErrorUnion, OkUnion } from '../outputs'; /** * Removes a chat from the list of recently found chats * @param {Object} params * @param {number} [params.chatId] - Identifier of the chat to be removed * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type RemoveRecentlyFoundChatMethod = (params: RemoveRecentlyFoundChatParams, state?: Record) => Promise; export interface RemoveRecentlyFoundChatParams { /** Identifier of the chat to be removed */ chatId?: number; }