import { ScreenBuffer } from "../buffer.js"; import type { DashboardLayout } from "../layout.js"; import type { CellStyle } from "../types.js"; export type BorderOptions = { leftTitle?: string; rightTitle?: string; style: CellStyle; }; export declare function renderBorder(buffer: ScreenBuffer, layout: DashboardLayout, opts: BorderOptions): void;