import { StringDict } from "../../../parsing/stringDict.js";
/**
 * Explicit details on a problem.
 */
export declare class ErrorItem {
    /**
     * A JSON Pointer to the location of the body property.
     */
    pointer?: string;
    /**
     * Explicit information on the issue.
     */
    detail: string;
    /**
     * @param serverResponse JSON response from the server.
     */
    constructor(serverResponse: StringDict);
}
