import { ArgumentParserResult } from '../types/Parser'; import { StringReader } from '../utils/StringReader'; import { ArgumentParser } from './ArgumentParser'; export declare class DeclarationDescriptionArgumentParser extends ArgumentParser { private readonly type; private readonly id; static identity: string; readonly identity = "string"; constructor(type: string, id: string); parse(reader: StringReader): ArgumentParserResult; getExamples(): string[]; }