import MemoryHistory, { MemoryHistoryOptions, InitialEntry } from './memory'; import BrowserHistory, { BrowserHistoryOptions } from './browser'; import HashHistory, { HashHistoryOptions } from './hash'; export * from './base'; export { MemoryHistory, MemoryHistoryOptions, InitialEntry }; export declare function createBrowserHistory(options?: BrowserHistoryOptions): BrowserHistory; export declare function createHashHistory(options?: HashHistoryOptions): HashHistory; export declare function createMemoryHistory(options?: MemoryHistoryOptions): MemoryHistory;