import type { MemoryHistory } from "../types";
/**
 * A memory history singleton you can use as the default history instance.
 *
 * @type {MemoryHistory}
 */
declare const memoryHistory: MemoryHistory;
export default memoryHistory;
