import { DivIcon } from 'leaflet'; export interface SvgIconOptions { color?: string; svgItems?: string; viewBox?: string; small?: boolean; } export declare class MarkerFactory { static readonly defIcon: DivIcon; static readonly defIconSmall: DivIcon; static getSvgIcon(options?: SvgIconOptions): DivIcon; }