export type RouteMatch = { params: Record; }; /** * Very small matcher supporting: * - static segments: /dashboard * - params: /reports/:id * - splat: /dashboard/* (captures the rest into params['*']) */ export declare function matchPath(pattern: string, pathname: string): RouteMatch | null; //# sourceMappingURL=route-matcher.d.ts.map