import { DetailedError } from '../models'; /** @description Represents an error response to a request that had client errors */ export declare class BadRequestResponse { /** @description a list of errors associated with this response */ detailed_errors?: DetailedError[]; }