import { IRpcServerOpts, RpcServer } from 'sdg-rpc';
export interface IRemoteComponentOptions extends IRpcServerOpts {
    bufferMsg?: boolean;
    cacheMsg?: boolean;
    interval?: number;
    rpcDebugLog?: boolean;
    rpcServer?: {
        create: (opts?: IRemoteComponentOptions) => RpcServer;
    };
}
