import { Token } from "./lexer"; export type RawEngineData = { [key: string]: RawEngineValue; }; export type RawEngineValue = string | number | boolean | RawEngineValue[] | RawEngineData; export declare class Parser { private tokens; private stack; constructor(tokens: Iterable); parse(): RawEngineData; private runParser; private dict; private array; } //# sourceMappingURL=parser.d.ts.map