import type { DataType, MatrixValue, 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]; _datatype?: DataType; createSparseMatrix(data: SparseMatrixConstructorData): SparseMatrix; } export declare const createMatAlgo11xS0s: import("../../../utils/factory.js").FactoryFunction<{ typed: TypedFunction; equalScalar: EqualScalarFunction; }, (s: SparseMatrix, b: MatrixValue, callback: MatrixCallback, inverse: boolean) => SparseMatrix>; export {}; //# sourceMappingURL=matAlgo11xS0s.d.ts.map