import "./_runtime_warn.mjs"; import type { Middleware, H3Route } from "h3"; import type { MatchedRoute } from "rou3"; import type { RouteRuleLayer } from "h3/rules"; export declare function findRoute(_method: string, _path: string): MatchedRoute | undefined; export declare function findRouteRules(_method: string, _path: string): RouteRuleLayer[]; export declare const globalMiddleware: Middleware[]; export declare function findRoutedMiddleware(_method: string, _path: string): MatchedRoute[];