import type { TypedFunction } from '../core/function/typed.js'; import type { ConfigOptions } from '../core/config.js'; interface BigNumberType { gt(n: BigNumberType): boolean; } interface BigNumberFactory { (value: unknown): BigNumberType; } interface MatrixFactory { (...args: unknown[]): unknown; } interface DenseMatrixConstructor { new (...args: unknown[]): unknown; } interface SparseMatrixConstructor { new (...args: unknown[]): unknown; } interface LargerDependencies { typed: TypedFunction; config: ConfigOptions; bignumber: BigNumberFactory; matrix: MatrixFactory; DenseMatrix: DenseMatrixConstructor; concat: TypedFunction; SparseMatrix: SparseMatrixConstructor; } interface LargerNumberDependencies { typed: TypedFunction; config: ConfigOptions; } export declare const createLarger: import("../utils/factory.js").FactoryFunction; export declare const createLargerNumber: import("../utils/factory.js").FactoryFunction; export {}; //# sourceMappingURL=larger.d.ts.map