import { CustomError } from './custom-error'; /** * Indicates that the resource has not been found */ export declare class NotFoundError extends CustomError { statusCode: number; constructor(); serializeErrors(): { message: string; }[]; }