import { Query, Route, InvariantRoute, Match } from '../../types'; declare function execRouteMatching(route: T, pathname: string, queryObj: Query, basePath: string): { route: T; match: Match; } | null; export default execRouteMatching;