import { SparseTensor } from '../../../tensor/sparse/tensor'; import { DTypeWasm, WASMTensor } from '../../../tensor/wasm/tensor'; /** * Calculates the sparse-dense matrix product, assuming that a * has zero dense dimensions. * * The result is a dense CPU tensor */ export declare function sparseDenseMatMulWASM(a: SparseTensor, b: WASMTensor): WASMTensor;