import { TypedFunction } from '../types.js'; /** Minimal mutable matrix surface used while building the result. */ interface MatrixLike { resize(size: unknown): void; forEach(cb: (value: unknown, index: number[]) => void): void; set(index: number[], value: unknown): unknown; toArray(): unknown[]; } export declare const createMatrixFromFunction: import("../utils/factory.js").FactoryFunction<{ typed: TypedFunction; matrix: (...args: unknown[]) => MatrixLike; isZero: (value: unknown) => boolean; }, TypedFunction>; export {}; //# sourceMappingURL=matrixFromFunction.d.ts.map