import { type Snippet } from 'svelte'; import { SVGOverlay } from 'leaflet'; import type { LatLngBounds, ImageOverlayOptions } from 'leaflet'; import type { HTMLAttributes } from 'svelte/elements'; type Props = { bounds: LatLngBounds; options?: ImageOverlayOptions; instance?: SVGOverlay; children?: Snippet; } & HTMLAttributes & { [key: string]: unknown; }; declare const SsvgOverlay: import("svelte").Component; type SsvgOverlay = ReturnType; export default SsvgOverlay; //# sourceMappingURL=SSVGOverlay.svelte.d.ts.map