/** * Chops long lines to fit screen width and fills the window. * * @param content - Full content lines. * @param lines - Output array of chopped lines. */ export declare function chopLongLines(content: string[], lines: string[]): void;