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 CeilNumberDependencies { typed: TypedFunction; config: ConfigOptions; round: TypedFunction; } interface CeilDependencies extends CeilNumberDependencies { matrix: (data: unknown[]) => Matrix; equalScalar: TypedFunction; zeros: (size: number[], storage?: string) => Matrix; DenseMatrix: new (data: unknown) => Matrix; } export declare const createCeilNumber: import("../utils/factory.js").FactoryFunction; export declare const createCeil: import("../utils/factory.js").FactoryFunction; export {}; //# sourceMappingURL=ceil.d.ts.map