import { Module } from 'snabbdom/modules/module'; declare type PathData = { type: 'popstate'; pathname: string; hash: string; query: string; params: { [param: string]: any; }; }; declare type RouteListener = (p: PathData) => any; declare const module: Module; export { PathData, RouteListener, module }; export default module;