/**
 * Calculates the co-factor matrix of a given matrix
 * @param matrix The matrix
 * @returns The co-factor matrix
 */
declare const cofactorMatrix: (matrix: number[][]) => number[][] | undefined;
export default cofactorMatrix;
