import { ErrorUnion, OkUnion } from '../outputs'; /** * Enables a proxy. Only one proxy can be enabled at a time. Can be called before authorization * @param {Object} params * @param {number} [params.proxyId] - Proxy identifier * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type EnableProxyMethod = (params: EnableProxyParams, state?: Record) => Promise; export interface EnableProxyParams { /** Proxy identifier */ proxyId?: number; }