import { IChannel, IServerChannel } from '../../../base/parts/ipc/common/ipc.js';
export interface IRemoteService {
readonly _serviceBrand: undefined;
getChannel(channelName: string): IChannel;
registerChannel(channelName: string, channel: IServerChannel<string>): void;
}