import type { TerminalCapabilityProfile } from "../terminal-capabilities.js"; export declare function renderScreen(title: string, sections: string[], capabilities: TerminalCapabilityProfile): string; export declare function renderBulletList(items: string[], capabilities: TerminalCapabilityProfile): string; export declare function renderKeyValueTable(values: Array<{ label: string; value: string; }>, capabilities?: TerminalCapabilityProfile): string; export declare function renderInfoCard(title: string, lines: string[], capabilities: TerminalCapabilityProfile): string; /** * Renders a boxed section — reusable wrapper around styleBox. * Accepts pre-formatted content lines. */ export declare function renderBoxedSection(title: string, lines: string[], capabilities: TerminalCapabilityProfile): string; //# sourceMappingURL=screen-layout.d.ts.map