import type { ReactionPath } from './index'; export declare const REACTION_PATH_FORMAT = "matterviz-reaction-path"; export declare function parse_reaction_path_json(content: string, filename?: string): Record; export declare function parse_xyz_reaction_path(content: string, filename?: string): ReactionPath; type DroppedFile = { content: string; filename: string; }; export declare function parse_dropped_paths(files: DroppedFile[]): Record; export {};