import { type Tensor1, type Tensor2 } from "./tensor.js";
/**
 * Matrix-vector multiplication. If `out` is null, a new 1D tensor will be
 * created, using vector `b`'s type and storage impl.
 *
 * @param out
 * @param a
 * @param b
 */
export declare const mulV: (out: Tensor1 | null, a: Tensor2, b: Tensor1) => Tensor1<number>;
//# sourceMappingURL=mulv.d.ts.map