import { BaseTrack, BaseEvent } from "apaas-track/core/index"; export declare class PageViewEvent extends BaseEvent { constructor(apaasTrack: BaseTrack); oldURL: string; newURL: string; entertype: string; getProperties(): { from: string; to: string; entertype: string; }; setProperties(property: { oldURL: string; newURL: string; type: string; }): void; } export declare const createRouteEventLog: (apaasTrack: BaseTrack, property: { oldURL: string; newURL: string; type: string; }) => void; export declare const registerPageViewEvent: () => void;