export interface ParsedOJS { ojs: string; offset: number; inlineMD: boolean; } export interface ParsedECL { ecl: string; offset: number; lineOffset: number; } export declare function ojsParse(ojs: string): any; export declare function omd2ojs(_: string, extractECL?: boolean): { ojsArr: ParsedOJS[]; eclArr: ParsedECL[]; }; export declare function omdParse(ojs: string): { cells: any[]; }; //# sourceMappingURL=parsers.d.ts.map