import type { Snippet } from 'svelte';
import maplibregl from 'maplibre-gl';
import type { MapLayerEventProps } from './common.js';
interface Props extends Omit<maplibregl.SymbolLayerSpecification, 'id' | 'source' | 'type' | 'source-layer'>, MapLayerEventProps {
    id?: string;
    source?: string;
    sourceLayer?: maplibregl.SymbolLayerSpecification['source-layer'];
    beforeId?: string;
    children?: Snippet;
}
declare const SymbolLayer: import("svelte").Component<Props, {}, "">;
type SymbolLayer = ReturnType<typeof SymbolLayer>;
export default SymbolLayer;
