import type { MathJsConfig } from '../core/config.js'; import type { TypedFunction } from '../core/function/typed.js'; interface MatrixType { valueOf(): unknown[]; resize(size: number[], defaultValue?: unknown, copy?: boolean): MatrixType; } interface MatrixConstructor { (data: unknown[]): MatrixType; } interface ResizeDependencies { typed: TypedFunction; config: MathJsConfig; matrix: MatrixConstructor; } export declare const createResize: import("../utils/factory.js").FactoryFunction; export {}; //# sourceMappingURL=resize.d.ts.map