import type { HistoryOptions, History, LocationTypeMap, LocationType } from './index'; export interface Update { (path: string): void; } export interface StopListener { (): void; } export default function createHashHistory(options?: HistoryOptions): History;