export declare const DEFAULT_LOCATION: { pathname: string; search: string; hash: string; }; export declare const DEFAULT_MATCH: { params: {}; isExact: boolean; path: string; url: string; query: {}; }; export declare const DEFAULT_ROUTE: { path: string; component: () => null; name: string; }; export declare const DEFAULT_HISTORY: import("./types").BrowserHistory; export declare const NOOP_HISTORY: { location: { pathname: string; search: string; hash: string; }; push: (...args: any[]) => void; replace: (...args: any[]) => void; goBack: (...args: any[]) => void; goForward: (...args: any[]) => void; listen: (...args: any[]) => void; block: (...args: any[]) => void; createHref: (...args: any[]) => void; }; export declare const DEFAULT_ACTION = "POP";