import { M as Middleware, b as HTTPMethod } from './types-f719049c.js'; import { ZodTypeAny } from 'zod'; import 'http'; import 'stream'; declare const asJSON: Middleware; declare const asHTML: Middleware; declare const withMethod: (...methods: HTTPMethod[]) => Middleware; type Schema = ZodTypeAny; declare const RequestValidator: (schema: Schema) => Middleware; export { RequestValidator, asHTML, asJSON, withMethod };