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