import type { LogEntry } from './observability.types.js'; interface WorktreeLogBufferOptions { maxEntries?: number; } export declare class WorktreeLogBuffer { totalPushed: number; private buffer; private readonly maxEntries; constructor(options?: WorktreeLogBufferOptions); all(): LogEntry[]; clear(): void; push(entry: LogEntry): void; } export {}; //# sourceMappingURL=worktree-log-buffer.d.ts.map