import type { NumberArrayConstructor } from '../utils/index.ts'; export interface MatrixTransposeOptions { /** * Allows to specify the type of array to use * @default Float64Array */ ArrayConstructor?: ArrayConstructorType; } export declare function matrixTranspose(matrix: number[][], options?: MatrixTransposeOptions): import("../utils/createArray.ts").NumberArrayType[]; //# sourceMappingURL=matrixTranspose.d.ts.map