/** * Output buffer for capturing execution logs */ export declare class OutputBuffer { private lines; private maxLines; constructor(maxLines?: number); add(line: string): void; getRecent(count: number): string[]; getAll(): string[]; clear(): void; get length(): number; } //# sourceMappingURL=output-buffer.d.ts.map