import type { Snippet } from 'svelte';
import type * as maplibregl from 'maplibre-gl';
interface Props extends Omit<maplibregl.GeoJSONSourceSpecification, 'type'> {
    id?: string;
    source?: maplibregl.GeoJSONSource;
    children?: Snippet;
}
declare const GeoJSONSource: import("svelte").Component<Props, {}, "source">;
type GeoJSONSource = ReturnType<typeof GeoJSONSource>;
export default GeoJSONSource;
