import { Properties } from "../model/model"; export declare class Page { readonly pagePath: string; readonly host: string; readonly hostname: string; readonly url: string; readonly referrer: string; readonly queryParameter: string; readonly protocol: string; /** page name */ readonly pageName: string; /** page properties */ readonly properties: Properties; constructor(pagePath?: string, host?: string, hostname?: string, url?: string, referrer?: string, queryParameter?: string, protocol?: string, /** page name */ pageName?: string, /** page properties */ properties?: Properties); isEquals(other: Page): boolean; static createWithCurrentPage(pageName?: string, properties?: Properties): Page; }