///
import { ArgumentParserResult } from '../types/Parser';
import { ParsingContext } from '../types/ParsingContext';
import { StringReader } from '../utils/StringReader';
import { ArgumentParser } from './ArgumentParser';
export declare class ItemSlotArgumentParser extends ArgumentParser {
static identity: string;
static readonly Category: {
armor: string[];
container: string[];
enderchest: string[];
horse: string[];
hotbar: string[];
inventory: string[];
villager: string[];
weapon: string[];
};
static readonly Sep = ".";
readonly identity = "itemSlot";
parse(reader: StringReader, ctx: ParsingContext): ArgumentParserResult;
getExamples(): string[];
}