import { ErrorUnion, OkUnion } from '../outputs'; /** * Removes a hashtag from the list of recently used hashtags * @param {Object} params * @param {string} [params.hashtag] - Hashtag to delete * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type RemoveRecentHashtagMethod = (params: RemoveRecentHashtagParams, state?: Record) => Promise; export interface RemoveRecentHashtagParams { /** Hashtag to delete */ hashtag?: string; }