import type { KeybindingsManager } from '@earendil-works/pi-tui'; import { Container } from '@earendil-works/pi-tui'; import type { TuiCompactionResult } from '../tui-backend.js'; export declare class CompactionSummaryComponent extends Container { private readonly result; private readonly keybindings?; private readonly body; private expanded; constructor(result: TuiCompactionResult, keybindings?: KeybindingsManager); setExpanded(expanded: boolean): void; invalidate(): void; private refresh; }