import { IRouter, IRouteRecord, IPartialRouteRecord } from './types'; import History from './history/base'; interface IRouterOptions { history: History; routes: RouteRecord[]; caseSensitive?: boolean; } export declare const createRouter: (options: IRouterOptions) => IRouter; export {};