import React from 'react'; import type { mapTypes, layerTypes } from '@opengeoweb/store'; export interface MultiMapPreset { id: string; title?: string; layers: layerTypes.Layer[]; autoTimeStepLayerId?: string; autoUpdateLayerId?: string; bbox?: mapTypes.Bbox; srs?: string; dimensions?: mapTypes.Dimension[]; displayTimeInMap?: boolean; displayLayerManagerAndLegendButtonInMap?: boolean; displayDimensionSelectButtonInMap?: boolean; syncGroupsIds?: string[]; componentType?: string; } export interface MultiMapViewProps { rows: number; cols: number; maps: MultiMapPreset[]; syncArea?: boolean; syncTime?: boolean; showTimeSlider?: boolean; showZoomControls?: boolean; multiLegend?: boolean; isClockEnabled?: boolean; } export declare const MultiMapViewConnect: React.FC;