import { VirtualElement } from '../types'; import { Router, RouterConfig } from './router.type'; declare function getRouter(): Router; declare function getParams(): Record; declare function createRouter(config: RouterConfig): VirtualElement; export { createRouter, getRouter, getParams };