/** * make format more clear and easy to print * @param str * @param strLenght */ export declare function prettySpaces(str: string, strLenght?: number): string | undefined; /** * pretty print for matrix * @param matrix */ export declare function prettyMatrixPrint(matrix: any[]): void;