import React from 'react'; import type { Bbox } from '@opengeoweb/webmap'; export interface ProjectionDetails { name: string; value: string; bbox: Bbox; } export declare const availableProjections: ProjectionDetails[]; export interface ProjectionSelectProps { currentProjection: string; onChangeProjection: (projection: ProjectionDetails) => void; } declare const ProjectionSelect: React.FC; export default ProjectionSelect;