import type { ITensor2 } from "./api.js";
/**
 * Matrix-matrix multiplication between matrix `a` (MxN) and matrix `b` (PxQ).
 * If `out` is given, it MUST be a MxQ tensor. If null then a new one will be
 * created, using `a`'s storage impl.
 *
 * @param out
 * @param a
 * @param b
 */
export declare const mulM: (out: ITensor2 | null, a: ITensor2, b: ITensor2) => ITensor2;
//# sourceMappingURL=mulm.d.ts.map