import { CustomError } from "./custom-error"; export declare class NotAuthorized extends CustomError { statusCode: number; constructor(); serializeError(): { status: string; statusCode: number; data: { message: string; }[]; }; }