import Actions from '../../actions'; import Store from '../../store'; export declare type Action = Actions.UpdateHistory; export declare type State = Store.History; export declare const DEFAULTS: State; export default function updateHistory(state: State, action: Action): State; export declare const updateHistoryState: (state: any, { url, route, request, shouldFetch, }?: { url?: any; route?: any; request?: any; shouldFetch?: any; }) => any;