import { HashCodec } from './HashCodec'; import { Route } from './Interfaces'; export declare function getWindowLocation(): Location | undefined; export declare function getPath(state: { route: Route; }): string | undefined; export declare function trimPath(path: string, removeLeadingSlash?: boolean): string; export declare function joinPath(path: string, base?: string): string; export declare function normalizePath(path: string, currentPath?: string, hashCodec?: HashCodec): string;