import { type Snippet } from 'svelte';
import maplibregl from 'maplibre-gl';
interface Props extends Omit<maplibregl.FeatureIdentifier, 'source'> {
    source?: string;
    state: Record<string, unknown>;
    children?: Snippet;
}
declare const FeatureState: import("svelte").Component<Props, {}, "">;
type FeatureState = ReturnType<typeof FeatureState>;
export default FeatureState;
