import type { MessageParamSpecEntry } from '../Message/Message';
export declare class ParameterRequirementMismatchError extends Error {
    private readonly _command;
    private readonly _paramName;
    private readonly _paramSpec;
    private readonly _givenValue;
    constructor(_command: string, _paramName: string, _paramSpec: MessageParamSpecEntry, _givenValue: string);
    get command(): string;
    get paramName(): string;
    get paramSpec(): MessageParamSpecEntry;
    get givenValue(): string;
}
