export declare class ServiceError {
    /**
    * The error code mapped to the error message.
    */
    "errorCode"?: string;
    /**
    * The category of the error.
    */
    "errorType"?: string;
    /**
    * A short explanation of the issue.
    */
    "message"?: string;
    /**
    * The PSP reference of the payment.
    */
    "pspReference"?: string;
    /**
    * The HTTP response status.
    */
    "status"?: number;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
