import { TypePoint } from '../enums/point-type.enum'; import { IImages } from '../interfaces/icon.interface'; import { PointAddress } from './point-address.model'; export declare class DrawingMarker { latitude: number; longitude: number; fitBounds?: boolean; address?: PointAddress; iconUrl?: string; photos?: IImages[]; title?: string; inCluster?: boolean; iconWidth?: number; iconHeight?: number; iconZIndex?: number; typePoint?: TypePoint; subType: string; constructor(obj: Partial); }