/** * Wrap text to the specified column width by inserting line breaks. * @remarks This is a thin wrapper around {@Link https://www.npmjs.com/package/wrap-ansi wrap-ansi}. */ export declare function wrapText(text: string, columns?: number, wordWrap?: boolean): string; export default wrapText;