import { JsProxy } from './JsProxy'; import { ServiceProxy } from './ServiceProxy'; export declare class ServiceProxyImpl implements ServiceProxy { private readonly jsProxy; constructor(jsProxy: JsProxy); invoke(method: string, ...args: any[]): T; get(name: string): T; getObject(): T; }