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