import { mapAst } from '..'; import { ErrorListener } from '../error-listener'; /** * Options specified for the parser. */ interface ParseOptions { /** * Custom listeners to handle parser errors. */ errorListeners: ErrorListener[]; } /** * Parses the syntax string showing BveTrainSim 5/6 map file to AST. * @param input syntax string showing BveTrainSim 5/6 map file * @returns Parsing results and, if parsing is successful, AST node. */ export declare const parseMapV2: (input: string, options?: Partial) => { success: boolean; ast?: mapAst.MapAstNode; }; export {};