/// /// import { Duplex } from "node:stream"; type WriteCallback = (error: Error | null | undefined) => void; export declare class Port extends Duplex { constructor(); _read(): any; _write(obj: any, encodingOrCallback?: BufferEncoding | WriteCallback, callback?: WriteCallback | undefined): boolean; } export {};