import { DisplayObjectConfig, HTML, HTMLStyleProps, ICSSStyleDeclaration } from '@antv/g';
import { IMapService } from '@antv/l7-core';
import { IL7GDisplayObject } from '../interface';
export declare class GHTML extends HTML implements IL7GDisplayObject {
originStyle: HTMLStyleProps & ICSSStyleDeclaration;
coordinates: [number, number];
mapService?: IMapService;
constructor(config: DisplayObjectConfig);
syncPosition(mapService: IMapService): void;
}