Documentation omits `NotFoundResponse` and `NotFoundHandler` types
src/index.ts
export { NotFoundResponse } from './types' // L22
export { NotFoundHandler } from './types' // L22(not documented)The code exports `NotFoundResponse` and `NotFoundHandler` types, but the documentation does not mention them anywhere. Developers looking for how to customize the 404 response or handler would not find guidance.
Add documentation for `NotFoundResponse` and `NotFoundHandler` types, explaining their usage in customizing not-found responses.