/** * Calculate the inverse of a matrix using the adjugate method * @param matrix The input matrix * @returns The inverse matrix or null if the matrix is not invertible */ export declare function inverse(matrix: number[][]): number[][] | null;