import type { BrowserSessionOptions, BrowserSessionOutput } from './types.mts'; import type { TailQueue } from './tail-queue.mts'; type OutputConsumer = { flush(): void; write(chunk: string | Buffer): void; }; export declare function createOutputConsumer(options: BrowserSessionOptions, tail: TailQueue, source: BrowserSessionOutput['source'], onLine: (line: string) => void): OutputConsumer; export {};