import type { Route } from '../../Route'; import type { MaybePromise, Url } from '../../types/internal'; type MaybeUrlOrPath = Url | string | null | undefined; /** * Asserts that url or url path (which can be wrapped in a promise) match route. */ export declare const assertUrlMatchRoute: (maybeUrlOrPath: MaybePromise, route: Route) => Promise; export {};