/** * Route matching helpers. * @module bquery/router */ import type { Route, RouteDefinition } from './types'; /** * Matches a path against route definitions and extracts params. * @internal */ export declare const matchRoute: (path: string, routes: RouteDefinition[]) => { matched: RouteDefinition; params: Record; } | null; /** * Creates a Route object from the current URL. * @internal */ export declare const createRoute: (pathname: string, search: string, hash: string, routes: RouteDefinition[]) => Route; //# sourceMappingURL=match.d.ts.map