import type { ScreenSurface as ScreenBuffer } from "../../screen/screen.js"; import type { CellStyle } from "../../dashboard/types.js"; import type { Rect } from "../layout.js"; export declare function drawPaneFrame(screen: ScreenBuffer, rect: Rect, title: string, style?: CellStyle, options?: { focused?: boolean; indicator?: string; }): void; export declare function paneBodyRect(rect: Rect): Rect;