import { ScreenBuffer } from "../buffer.js"; import type { Rect } from "../types.js"; export type FooterHint = { key: string; label: string; }; export declare function renderFooter(buffer: ScreenBuffer, rect: Rect, hints: FooterHint[]): void; export declare function defaultHints(): FooterHint[];