import type { Matrix } from '../types/Matrix.js'; export declare const getNullMatrix: (width: number, height: number) => Matrix; export declare const getTransposed: (matrix: Matrix) => Matrix;