import type * as Ast from "@syuilo/aiscript/node.js"; import type { ITokenStream } from "@syuilo/aiscript/parser/streams/token-stream.js"; import { ParserError } from "../../errors/index.js"; export declare function parseExpr(s: ITokenStream, e: ParserError[], isStatic: boolean): Ast.Expression | null;