/** * @description 派发pushState, replaceState 的监听 * @param type */ export declare function _history(type: 'pushState' | 'replaceState'): () => void; /** * @description 处理hash变化 * @param e hash事件 */ export declare function handleHashChange(__e: Event): void; /** * @description 处理history变化 * @param e history事件 */ export declare function handleHistoryChange(__e: Event): void; export declare function setPVTime(): void; /** * @description 添加路由栈信息 * @param page 页面信息 */ export declare function setRouteStack(page: string | string[]): { originPage: string; page: string; }; export declare function handlePageLag(lagTime: number): void;