import { ChainTypes } from '../../common/types';
import GlobalConfigService from './globalConfigService';
export default class ProxyService {
    private _globalConfigService;
    private _nextId;
    constructor(_globalConfigService: GlobalConfigService);
    fetchJsonRpc(chain: ChainTypes, method: string, params?: Array<any>): Promise<any>;
}
