import { InputState } from "../../../InputState"; import { MatchingLogic } from "../../../Matchers"; import { MatchPrefixResult } from "../../../MatchPrefixResult"; import { MatchReport } from "../../../MatchReport"; export declare class DelimitedLiteral implements MatchingLogic { readonly delimiter: string; readonly escapeChar: string; readonly $id: string; readonly parseNodeName = "DelimitedLiteral"; constructor(delimiter: string, escapeChar?: string); matchPrefix(is: InputState, thisMatchContext: {}, parseContext: {}): MatchPrefixResult; matchPrefixReport(is: InputState, thisMatchContext: {}, parseContext: {}): MatchReport; }