import { type Component } from "@gajae-code/tui"; export declare class TwoColumnBody implements Component { private readonly leftPane; private readonly rightPane; private readonly maxHeight; constructor(leftPane: Component, rightPane: Component, maxHeight: number); render(width: number): string[]; invalidate(): void; }