import type { TypedFunction } from '../../core/function/typed.js'; /** * Compressed-column (CSC) storage of a sparse matrix: the values, the row index of each * value, and the column pointers. */ export interface SparseMatrixData { _size: number[]; _values?: unknown[]; _index: number[]; _ptr: number[]; } interface CsCountsDependencies { transpose: TypedFunction; } export declare const createCsCounts: import("../../utils/factory.js").FactoryFunction number[] | null>; export {}; //# sourceMappingURL=csCounts.d.ts.map