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