import CustomError from './custom-error'; import { returnSerializeError } from '../utils/custom-types'; declare class UnAuthenticated extends CustomError { constructor(message: string, details?: any); serializeError(): returnSerializeError; } export default UnAuthenticated; //# sourceMappingURL=un-authenticated.d.ts.map