import type { KlawPluginHttpRouteMatch } from "./types.js"; type PluginHttpRouteLike = { path: string; match: KlawPluginHttpRouteMatch; }; export declare function findOverlappingPluginHttpRoute(routes: readonly T[], candidate: PluginHttpRouteLike): T | undefined; export {};