import { ANTLRErrorListener, RecognitionException, Recognizer } from "antlr4ts"; export declare class ConsoleErrorListener implements ANTLRErrorListener { /** * Provides a default instance of {@link ConsoleErrorListener}. */ static readonly INSTANCE: ConsoleErrorListener; /** * {@inheritDoc} * *

* This implementation prints messages to {@link System#err} containing the * values of {@code line}, {@code charPositionInLine}, and {@code msg} using * the following format.

* *
     * line line:charPositionInLine msg
     * 
*/ syntaxError(recognizer: Recognizer, offendingSymbol: T, line: number, charPositionInLine: number, msg: string, e: RecognitionException | undefined): void; } //# sourceMappingURL=customError.d.ts.map