import { Event } from "../../../base/common/event.js"; import { IDataChannelEvent, CoreDataChannel } from "./dataChannel.js"; export declare const IDataChannelService: import("../../instantiation/common/instantiation.js").ServiceIdentifier; export interface IDataChannelService { readonly _serviceBrand: undefined; readonly onDidSendData: Event; getDataChannel(channelId: string): CoreDataChannel; }