import { Settings } from '../settings'; import { Matrix } from './csr'; import { LinearEquationsSolverInterface } from './types'; export declare class GaussSeidelSolver implements LinearEquationsSolverInterface { private readonly settings; constructor(settings: Settings); solve(out: Float32Array, A: Readonly, b: Readonly, min: Readonly, max: Readonly): void; }