import { ParserErrors as IParserErrors, ParserErrorType } from './types'; export declare class ParserErrors implements IParserErrors { private _errors; readonly commandErrors: string[]; readonly argumentErrors: string[]; readonly optionErrors: string[]; readonly allErrors: string[]; getErrors: (type?: ParserErrorType) => string[]; clearErrors: (type?: ParserErrorType) => void; push: (type: ParserErrorType, message: string) => void; readonly hasErrors: boolean; readonly hasNonArgOrOptionErrors: boolean; }