import { type Snippet } from 'svelte'; import { Rectangle } from 'leaflet'; import type { LatLngBoundsExpression, PolylineOptions } from 'leaflet'; type Props = { bounds: LatLngBoundsExpression; options?: PolylineOptions; instance?: Rectangle; children?: Snippet; } & { [key: string]: unknown; }; declare const SRectangle: import("svelte").Component; type SRectangle = ReturnType; export default SRectangle; //# sourceMappingURL=SRectangle.svelte.d.ts.map