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