/** Generates a hyper link out of an url and the according text that will be shown in the terminal */
export declare function generateHyperLink(url: string, text: string): string;
/** Formats the text to a specific maxLineLength (min. 20) */
export declare function formatLongText(desc: string, maxLineLength?: number): string;
