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