import CustomError from './custom-error'; import { returnSerializeError } from '../utils/custom-types'; /** * @description this is the bad request error */ declare class BadRequest extends CustomError { /** * * @param message this is the message of the error * @param details this is the details if you need to add some details for the error */ constructor(message: string, details?: any); serializeError(): returnSerializeError; } export default BadRequest; //# sourceMappingURL=bad-request.d.ts.map