import { YLocation, Route, HistoryState } from './router.interface'; import { RouterAction, RouterState } from './reducer.interface'; export declare const initialState: RouterState; export declare const reducer: (state: RouterState, action: RouterAction) => { history: string[]; historyRoute: any; current: YLocation; routes: Route; currentRute?: HistoryState | undefined; currentPath?: string | undefined; } | { current: any; history: any[]; currentPath: any; historyRoute: Record>; routes: Route; currentRute?: HistoryState | undefined; }; //# sourceMappingURL=reducer.d.ts.map