/** @jsxImportSource preact */ import type { ComponentChildren, JSX } from 'preact'; export type HtmlOverlayItemProps = { /** Injected by HtmlOverlayWidget */ x?: number; /** Injected by HtmlOverlayWidget */ y?: number; /** Coordinates of this overlay in [lng, lat] (and optional z). */ coordinates: number[]; children?: ComponentChildren; style?: JSX.CSSProperties; }; export declare function HtmlOverlayItem({ x, y, children, style, ...props }: HtmlOverlayItemProps): JSX.Element; //# sourceMappingURL=html-overlay-item.d.ts.map