import type { TypedFunction } from '../core/function/typed.js'; import type { ConfigOptions } from '../core/config.js'; interface MatrixFactory { (...args: unknown[]): unknown; } interface DenseMatrixConstructor { new (...args: unknown[]): unknown; } interface SparseMatrixConstructor { new (...args: unknown[]): unknown; } interface UnequalDependencies { typed: TypedFunction; config: ConfigOptions; equalScalar: TypedFunction; matrix: MatrixFactory; DenseMatrix: DenseMatrixConstructor; concat: TypedFunction; SparseMatrix: SparseMatrixConstructor; } interface UnequalNumberDependencies { typed: TypedFunction; equalScalar: TypedFunction; } export declare const createUnequal: import("../utils/factory.js").FactoryFunction; export declare const createUnequalNumber: import("../utils/factory.js").FactoryFunction; export {}; //# sourceMappingURL=unequal.d.ts.map