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