import { ErrorUnion, OkUnion } from '../outputs'; /** * Removes a proxy server. Can be called before authorization * @param {Object} params * @param {number} [params.proxyId] - Proxy identifier * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type RemoveProxyMethod = (params: RemoveProxyParams, state?: Record) => Promise; export interface RemoveProxyParams { /** Proxy identifier */ proxyId?: number; }