import { ResolvedRoute } from '../types/resolved'; import { Routes } from '../types/route'; import { ParseUrlOptions } from '../types/url'; type MatchOptions = { state?: Partial; } & ParseUrlOptions; export declare function getMatchForUrl(routes: Routes, url: string, options?: MatchOptions): ResolvedRoute | undefined; export {};