import { Location, PageBlockCaption } from '@airgram-dev/core'; /** A map */ export declare class PageBlockMapBaseModel { _: 'pageBlockMap'; /** Location of the map center */ location: Location; /** Map zoom level */ zoom: number; /** Map width */ width: number; /** Map height */ height: number; /** Block caption */ caption: PageBlockCaption; }