import React from 'react'; import type { layerTypes } from '@opengeoweb/store'; export interface InitialHarmTempAndPrecipProps { layers: { topRow: layerTypes.Layer; bottomRow: layerTypes.Layer; topRowSyncGroups?: string[]; bottomRowSyncGroups?: string[]; }; multiLegend?: boolean; } export declare const HarmonieTempAndPrecipPreset: React.FC;