import { CommonEndpoint } from "./CommonEndpoint.js"; export declare class ChannelEndpoint extends CommonEndpoint { #private; toString(): string; constructor(debugId: string, incomne?: ReadableStream); /** 这是输出流,给外部读取用的 */ get stream(): any; /**对接输入流 */ send(value: string | Uint8Array): void; protected postTextMessage(data: string): void; protected postBinaryMessage(data: Uint8Array): void; protected beforeClose: () => void; protected afterClosed: () => void; } //# sourceMappingURL=ChannelEndpoint.d.ts.map