import { type Snippet } from 'svelte'; import { LayerGroup } from 'leaflet'; import type { LayerOptions } from 'leaflet'; type Props = { options?: LayerOptions; name?: string; checked?: boolean; instance?: LayerGroup; layerType?: 'base' | 'overlay'; children?: Snippet; } & { [key: string]: unknown; }; declare const SLayerGroup: import("svelte").Component; type SLayerGroup = ReturnType; export default SLayerGroup; //# sourceMappingURL=SLayerGroup.svelte.d.ts.map