interface ParserContext { } export interface Parser { (scopeFn: (ctx: ParserContext) => T, root?: Node): T; } export {};