import { ApiResponseError } from './api-response-error';
/**
 * Generic error class for API responses where the format was incorrect.
 *
 * @category Response
 */
export declare class DataError extends Error {
    response: ApiResponseError;
    /**
     * Constructor.
     */
    constructor(message: string, response: ApiResponseError);
}
//# sourceMappingURL=data-error.d.ts.map