import { BlockArgumentParser } from './BlockArgumentParser'; import { DeclarationDescriptionArgumentParser } from './DeclarationDescriptionArgumentParser'; import { DeclarationIDArgumentParser } from './DeclarationIDArgumentParser'; import { EntityArgumentParser } from './EntityArgumentParser'; import { IdentityArgumentParser } from './IdentityArgumentParser'; import { ItemArgumentParser } from './ItemArgumentParser'; import { ItemSlotArgumentParser } from './ItemSlotArgumentParser'; import { LiteralArgumentParser } from './LiteralArgumentParser'; import { MessageArgumentParser } from './MessageArgumentParser'; import { NbtArgumentParser } from './NbtArgumentParser'; import { NbtPathArgumentParser } from './NbtPathArgumentParser'; import { NumberArgumentParser } from './NumberArgumentParser'; import { NumberRangeArgumentParser } from './NumberRangeArgumentParser'; import { ObjectiveArgumentParser } from './ObjectiveArgumentParser'; import { ObjectiveCriterionArgumentParser } from './ObjectiveCriterionArgumentParser'; import { ParticleArgumentParser } from './ParticleArgumentParser'; import { ScoreboardSlotArgumentParser } from './ScoreboardSlotArgumentParser'; import { StringArgumentParser } from './StringArgumentParser'; import { TagArgumentParser } from './TagArgumentParser'; import { TeamArgumentParser } from './TeamArgumentParser'; import { TextComponentArgumentParser } from './TextComponentArgumentParser'; import { TimeArgumentParser } from './TimeArgumentParser'; import { UuidArgumentParser } from './UuidArgumentParser'; import { VectorArgumentParser } from './VectorArgumentParser'; import { CodeSnippetArgumentParser } from './CodeSnippetArgumentParser'; export declare class ParserCollection { readonly Block: typeof BlockArgumentParser; readonly CodeSnippet: typeof CodeSnippetArgumentParser; readonly DeclarationDescription: typeof DeclarationDescriptionArgumentParser; readonly DeclarationID: typeof DeclarationIDArgumentParser; readonly Entity: typeof EntityArgumentParser; readonly Item: typeof ItemArgumentParser; readonly ItemSlot: typeof ItemSlotArgumentParser; readonly Literal: typeof LiteralArgumentParser; readonly Message: typeof MessageArgumentParser; readonly Identity: typeof IdentityArgumentParser; readonly NbtPath: typeof NbtPathArgumentParser; readonly Nbt: typeof NbtArgumentParser; readonly Number: typeof NumberArgumentParser; readonly NumberRange: typeof NumberRangeArgumentParser; readonly Objective: typeof ObjectiveArgumentParser; readonly ObjectiveCriterion: typeof ObjectiveCriterionArgumentParser; readonly Particle: typeof ParticleArgumentParser; readonly ScoreboardSlot: typeof ScoreboardSlotArgumentParser; readonly String: typeof StringArgumentParser; readonly Tag: typeof TagArgumentParser; readonly Team: typeof TeamArgumentParser; readonly TextComponent: typeof TextComponentArgumentParser; readonly Time: typeof TimeArgumentParser; readonly Uuid: typeof UuidArgumentParser; readonly Vector: typeof VectorArgumentParser; }