/**
 * Returns an identity matrix of nxn
 * @param {Number} n
 * @returns {Matrix}
 */
export function imatrix(n: number): Matrix;
import { Matrix } from "../../../../Types/Matrix";
