import { ArgumentParserResult } from '../types/Parser'; import { ParsingContext } from '../types/ParsingContext'; import { StringReader } from '../utils/StringReader'; import { ArgumentParser } from './ArgumentParser'; export declare class LiteralArgumentParser extends ArgumentParser { static identity: string; readonly identity = "literal"; protected readonly literals: string[]; private readonly extraChars; constructor(...literals: string[]); parse(reader: StringReader, { cursor: cursor }: ParsingContext): ArgumentParserResult; toHint(_: string, optional: boolean): string; getExamples(): string[]; }