import { RequestMessage } from '@crealogix-map/core'; export declare const openInternalPageMessageTag = "OpenLocalPageMessage"; /** * Request the browser to close itself. Only browsers which are allowing the close button will be closed by this message. */ export declare class OpenLocalPageMessage extends RequestMessage { readonly tag: string; /** * Default constructor. * @param path - the path relative to the root of the web content directory.. */ constructor(path: string); /** * The url to be opened. */ path: string; }