import type { DoubleMatrix } from 'cheminfo-types'; import type { NumberArrayConstructor, NumberArrayType } from '../utils/index.ts'; export interface MatrixCreateEmptyOptions { /** * Matrix from which to extract nbRows and nbColumns */ matrix?: DoubleMatrix; /** * Matrix from which to extract nbRows and nbColumns * @default matrix.length || 1 */ nbRows?: number; /** * Matrix from which to extract nbRows and nbColumns * @default matrix[0].length || 1 */ nbColumns?: number; /** * Allows to specify the type of array to use * @default Float64Array */ ArrayConstructor?: ArrayConstructorType; } /** * Create a new matrix based on the size of the current one or by using specific dimensions. * @param options */ export declare function matrixCreateEmpty(options: MatrixCreateEmptyOptions): Array>; //# sourceMappingURL=matrixCreateEmpty.d.ts.map