import type { DoubleArray, DoubleMatrix } from 'cheminfo-types'; export interface ParseMatrixOptions { /** * Field separator * @default '\t' */ fs?: string; } export interface ParseMatrixResult { x: DoubleArray; meta: Array>; matrix: DoubleMatrix; ids: string[]; } /** * Parse a matrix from text format * @param text - String containing the text data * @param options - Parsing options * @returns Parsed matrix data with x, meta, matrix, and ids */ export default function parseMatrix(text: string, options?: ParseMatrixOptions): ParseMatrixResult; //# sourceMappingURL=parseMatrix.d.ts.map