import { ImageOverlay } from 'leaflet';
import type { LatLngBounds, ImageOverlayOptions } from 'leaflet';
type Props = {
    url: string;
    bounds: LatLngBounds;
    options?: ImageOverlayOptions;
    instance?: ImageOverlay;
} & {
    [key: string]: unknown;
};
declare const SImageOverlay: import("svelte").Component<Props, {}, "instance">;
type SImageOverlay = ReturnType<typeof SImageOverlay>;
export default SImageOverlay;
//# sourceMappingURL=SImageOverlay.svelte.d.ts.map