import type { Location } from './location'; export type RouteChangeHandler = (url: string | Location) => void; export type SubscribeRouteChange = (handler: RouteChangeHandler) => () => void;