declare class EntityNotFoundError extends Error { readonly name = "EntityNotFound"; readonly id: ID; constructor(id: ID); } export default EntityNotFoundError;