/** Wrap text at word bounds if it exceeds a maximum line length. */ export declare function wordWrap(line: string, maxLength: number): string[]; /** Wrap text at word bounds if it exceeds a maximum line length. */ export declare function wordWrap(lines: string[], maxLength: number): string[];