import { RouteConfig, RouteMatch } from './types.js'; export declare function getRoutePath(route: RouteConfig): { path: string; exact: boolean; }; export declare function matchPath( /** What location the route is matched against */ comparePath: string, /** Route to test for a match */ route: RouteConfig): RouteMatch | null; export declare function getBestRouteMatch(fullPath: string, routes: RouteConfig[]): RouteMatch | null; export declare function getAllMatchingRoutes(fullPath: string, routes: RouteConfig[]): RouteMatch[];