import { type RawEntry } from "./output.js"; /** * Builds a raw suffix string from collected raw entries. * * After the main frame is written to stdout, the raw suffix moves the cursor * to each raw entry's layout position and outputs its content unchanged. * After all entries, the cursor is moved back to the end of the frame. * * @param entries - Raw entries collected during render traversal. * @param frameHeight - Height of the rendered frame in rows. * @param rowOffset - Rows already written above the interactive frame. * @returns The raw suffix string, or empty string if no entries. */ export declare const buildRawSuffix: (entries: readonly RawEntry[], frameHeight: number, rowOffset?: number) => string;