import type { TypedFunction } from '../core/function/typed.js'; import type { ConfigOptions } from '../core/config.js'; interface Matrix { size(): number[]; storage(): string; valueOf(): unknown[] | unknown[][]; } interface FloorNumberDependencies { typed: TypedFunction; config: ConfigOptions; round: TypedFunction; } interface FloorDependencies extends FloorNumberDependencies { matrix: (data: unknown[]) => Matrix; equalScalar: TypedFunction; zeros: (size: number[], storage?: string) => Matrix; DenseMatrix: new (data: unknown) => Matrix; } export declare const createFloorNumber: import("../utils/factory.js").FactoryFunction; export declare const createFloor: import("../utils/factory.js").FactoryFunction; export {}; //# sourceMappingURL=floor.d.ts.map