import { ApaasTrack } from "../apaas-track"; export declare const normalizeUrl: (hasUrl: string, clearQuery?: boolean) => string; export declare const isSameUrl: (oldUrl: string, newUrl: string) => true | undefined; export interface IHistoryRecord { newURL: string; oldURL: string; type: "onload" | "push" | "back" | "replace" | "forward"; } export declare const listenHistoryChange: (apaasTrack: ApaasTrack, callback: (record: IHistoryRecord) => void) => void;