import type { DataType, MatrixValue, MatrixArray, MatrixCallback, EqualScalarFunction, TypedFunction, SparseMatrixConstructorData } from '../types.js'; /** * SparseMatrix interface for algorithm operations. * Note: SparseMatrix is always 2D. */ interface SparseMatrix { _values?: MatrixValue[]; _index: number[]; _ptr: number[]; _size: [number, number]; _data?: MatrixArray; _datatype?: DataType; getDataType(): string; createSparseMatrix(config: SparseMatrixConstructorData): SparseMatrix; } export declare const createMatAlgo05xSfSf: import("../../../utils/factory.js").FactoryFunction<{ typed: TypedFunction; equalScalar: EqualScalarFunction; }, (a: SparseMatrix, b: SparseMatrix, callback: MatrixCallback) => SparseMatrix>; export {}; //# sourceMappingURL=matAlgo05xSfSf.d.ts.map