import { CustomError } from './custom-error'; /** * Indicates that the request has not been applied because it * lacks valid authentication credentials for the target resource */ export declare class NotAuthorizedError extends CustomError { statusCode: number; constructor(); serializeErrors(): { message: string; }[]; }