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<Props, {}, "instance">;
type SLayerGroup = ReturnType<typeof SLayerGroup>;
export default SLayerGroup;
//# sourceMappingURL=SLayerGroup.svelte.d.ts.map