import type { ReactRouterHistory } from '../types'; export type ReactRouterV4V5RouteShape = any; export interface ReactRouterV4V5RouteProps extends Record { computedMatch?: { isExact: boolean; path: string; }; } export interface ReactRouterV4V5Dependencies { history: ReactRouterHistory; Route: ReactRouterV4V5RouteShape; } export interface ReactRouterV4V5ActiveEvent extends Record { route: string; url: string; }