import { ErrorUnion, OkUnion } from '../outputs'; /** * Removes a user from the blacklist * @param {Object} params * @param {number} [params.userId] - User identifier * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type UnblockUserMethod = (params: UnblockUserParams, state?: Record) => Promise; export interface UnblockUserParams { /** User identifier */ userId?: number; }