import type { TypedFunction } from '../core/function/typed.js'; interface Matrix { size(): number[]; storage(): string; } interface OrDependencies { typed: TypedFunction; matrix: (data: unknown[]) => Matrix; equalScalar: TypedFunction; DenseMatrix: new (data: unknown) => Matrix; concat: TypedFunction; } export declare const createOr: import("../utils/factory.js").FactoryFunction; export {}; //# sourceMappingURL=or.d.ts.map