import type { Bounds, TerminalArea, WindowChrome } from "@termfleet/core/types.js"; export declare function getTerminalCells(bounds: Bounds): { columns: number; rows: number; }; export declare function getTerminalArea(bounds: Bounds): TerminalArea; export declare function getWindowChrome({ bounds, id, title }: { bounds: Bounds; id: number | string; title: string; }): WindowChrome;