import type { DataXY } from 'cheminfo-types'; import type { Kind } from '../Kinds.js'; export interface ParseTextOptions { /** * Kind object defining conversion and display options */ kind?: Kind; /** * Parser options to pass to xy-parser */ parserOptions?: any; } export interface ParseTextResult { data: DataXY; } /** * Create a spectrum from a text file * @param value - String containing the text data * @param options - Parsing options * @returns Parsed data object */ export default function parseText(value: string, options?: ParseTextOptions): ParseTextResult; //# sourceMappingURL=parseText.d.ts.map