/********************************************************************************
 * Copyright (c) 2022 STMicroelectronics and others.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * https://www.eclipse.org/legal/epl-2.0, or the MIT License which is
 * available at https://opensource.org/licenses/MIT.
 *
 * SPDX-License-Identifier: EPL-2.0 OR MIT
 *******************************************************************************/
import { JsonRpcProxyFactory } from '@theia/core/lib/common/messaging/proxy-factory';
export declare class TheiaModelServerJsonRpcProxyFactory<T extends object> extends JsonRpcProxyFactory<T> {
    protected onRequest(method: string, ...args: any[]): Promise<any>;
    protected onNotification(method: string, ...args: any[]): void;
    protected processArguments(args: any[]): any[];
}
//# sourceMappingURL=jsonrpc-proxy-factory.d.ts.map