declare function ParseError(message: string): void; /** * Parse a SMILES string to an internal tree representation. * * Args: * smiles [string]: a string representing the molecule. * * Returns: the parse tree (see top-of file docstring for details). * * Throws: * ParseError: if the input is not valid SMILES or contains features not * yet implemented. */ declare function parse(smiles: any, ctx: any): any; declare const _default: { parse: typeof parse; ParseError: typeof ParseError; }; export default _default;