import { ActivatedRouteSnapshot } from "@angular/router"; import { ReduxRouterRoute, ReduxRouterParams } from "./redux-router.types"; export declare const rebuildStateTree: (rootState: ActivatedRouteSnapshot, key: string) => ReduxRouterParams; export declare const getPath: (url?: string) => string; export declare const getFragment: (url?: string) => string; export declare const getData: (rootState: ActivatedRouteSnapshot) => any; export declare const routesAreEqual: (current: ReduxRouterRoute, next: ReduxRouterRoute) => boolean;