import React from 'react'; import type { Source } from '@opengeoweb/shared'; import type { LayerFoundation } from '@opengeoweb/webmap'; interface LegendDialogProps { layers: LayerFoundation[]; isOpen: boolean; onClose: () => void; onMouseDown?: () => void; mapId: string; showMapId?: boolean; order?: number; source?: Source; onToggleLayerLegendVisibility: (layerId: string, showLegend: boolean) => void; } export declare const LegendDialog: React.FC; export {};