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