/**
 * A two-dimensional array (matrix) type.
 * Used for header row/column matrices and other grid-like structures.
 *
 * @template T - The type of elements in the matrix.
 */
export type Matrix<T> = T[][];
