/**
 * A thin response wrapper for non-5xx errors.
 */
export type DonobuErrorResponse = {
    /**
     * The Donobu error code. This matches DonobuException's donobuErrorCode.
     */
    readonly code: string;
    /**
     * The human-readable message for the error. This matches DonobuException's userFacingMessage.
     */
    readonly message: string;
};
//# sourceMappingURL=DonobuErrorResponse.d.ts.map