import type { IWorkerIO } from './defs'; import { WorkerIO } from './worker_io'; import type { IOutputCallback } from '../callback'; import type { Termios } from '../termios'; export declare class SharedArrayBufferWorkerIO extends WorkerIO implements IWorkerIO { constructor(outputCallback: IOutputCallback, termios: Termios.Termios, sharedArrayBuffer: SharedArrayBuffer); protected _getStdin(timeoutMs: number): string; protected _getStdinAsync(timeoutMs: number): Promise; private _intArray; private _sharedArrayBuffer; }