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