import { Symbol, IPluginRegistry, IPluginProvider } from '@crealogix-map/core'; import { IBrowserService } from './IBrowserService'; export declare module BrowserModule { /** * The symbol for the Browser Service to register on the PluginLocator. */ const serviceSymbol: Symbol; /** * The tag used to register a listener for browser-orientation changes. */ const configureRotationMessage = "ConfigureRotationMessage"; const downloadPdfMessage = "DownloadPdfMessage"; const showPdfMessage = "ShowPdfMessage"; /** * Gets the IMessenger service from the given provider. * * @param provider The provider to use. */ const getService: (provider: IPluginProvider) => IBrowserService; /** * Use the default browser module which gets the configuration from the native part. * @param registrar */ const use: (registrar: IPluginRegistry) => void; }