import { Request } from './request.js'; import type { NextFunction } from '@tinyhttp/router'; import type { Response } from './response.js'; import { App } from './app.js'; import { TemplateEngineOptions } from './types.js'; /** * Extends Request and Response objects with custom properties and methods */ export declare const extendMiddleware: (app: App) => (req: Request, res: Response, next: NextFunction) => void; //# sourceMappingURL=extend.d.ts.map