/**
* Recursively calculate the determinant of a matrix, making use of the minor matrix
* @param matrix The matrix
* @returns The determinant of the matrix
*/declareconstdeterminant: (matrix: number[][]) =>number | undefined;
exportdefault determinant;