import { type Snippet } from 'svelte';
import type * as maplibregl from 'maplibre-gl';
interface Props extends maplibregl.QuerySourceFeatureOptions {
    map?: maplibregl.Map;
    source?: string;
    features?: maplibregl.MapGeoJSONFeature[];
    children?: Snippet<[maplibregl.MapGeoJSONFeature]>;
}
declare const QuerySourceFeatures: import("svelte").Component<Props, {}, "features">;
type QuerySourceFeatures = ReturnType<typeof QuerySourceFeatures>;
export default QuerySourceFeatures;
