import type { Snippet } from 'svelte';
import type * as maplibregl from 'maplibre-gl';
interface Props extends Omit<maplibregl.RasterDEMSourceSpecification, 'type'> {
    id?: string;
    source?: maplibregl.RasterDEMTileSource;
    children?: Snippet;
}
declare const RasterDEMTileSource: import("svelte").Component<Props, {}, "source">;
type RasterDEMTileSource = ReturnType<typeof RasterDEMTileSource>;
export default RasterDEMTileSource;
