import { type Snippet } from 'svelte';
import maplibregl from 'maplibre-gl';
interface Props extends maplibregl.QueryRenderedFeaturesOptions {
    map?: maplibregl.Map;
    geometry?: maplibregl.PointLike | [maplibregl.PointLike, maplibregl.PointLike];
    features?: maplibregl.MapGeoJSONFeature[];
    children?: Snippet<[maplibregl.MapGeoJSONFeature]>;
}
declare const QueryRenderedFeatures: import("svelte").Component<Props, {}, "features">;
type QueryRenderedFeatures = ReturnType<typeof QueryRenderedFeatures>;
export default QueryRenderedFeatures;
