import { ErrorUnion, OkUnion } from '../outputs'; /** * Removes users from the contact list * @param {Object} params * @param {number[]} [params.userIds] - Identifiers of users to be deleted * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type RemoveContactsMethod = (params: RemoveContactsParams, state?: Record) => Promise; export interface RemoveContactsParams { /** Identifiers of users to be deleted */ userIds?: number[]; }