/** * Copyright (c) 2022 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Koya Sakuma * * Adapted from MolQL src/transpile.ts */ import { Expression } from './language/expression.js'; import { Script } from './script.js'; export declare function parse(lang: Script.Language, str: string): Expression;