import type { RouteMatch } from "../routes/index.js"; import type { Middleware, RequestContext, Route } from "../types/index.js"; /** * Execute route handler with middleware chain. * Returns the response from the handler or middleware. */ export declare function executeRoute(match: RouteMatch, ctx: RequestContext, getMiddlewareChain: (route: Route) => Middleware[]): Promise; //# sourceMappingURL=route.d.ts.map