/** * Wraps lines into subrows to fit screen width and fills the window. * * @param content - Full content lines. * @param lines - Output array of wrapped lines. */ export declare function wrapLongLines(content: string[], lines: string[]): void;