import { NativeObject } from "../imports/NativeObject"; import { AJAXMapItem } from "./AJAXMapItem"; import { AJAXMapLegendItem } from "./AJAXMapLegendItem"; import { GlideRecord } from "./GlideRecord"; export declare class GlideappAJAXMapPage { setTitle(title: string): void; setSubtitle(subtitle: string): void; setConfigurationRecord( table: string, sysId: string, query: string, view: string ): void; setCenter(latitude: number, longitude: number): void; isNewSession(): boolean; isMobileSession(): boolean; getUserZoom(): number; getCenter(): NativeObject; addLegendItem(title: string, iconUrl: string): AJAXMapLegendItem; addItem(gr: GlideRecord): AJAXMapItem; }