import maplibregl from 'maplibre-gl';
interface Props extends Omit<maplibregl.TerrainSpecification, 'source'> {
    source?: string;
}
declare const Terrain: import("svelte").Component<Props, {}, "">;
type Terrain = ReturnType<typeof Terrain>;
export default Terrain;
