import React from 'react'; import type { syncGroupsTypes } from '@opengeoweb/store'; interface SyncGroupProps { viewStateData: syncGroupsTypes.GroupsAndSources; title: string; handleToggle: (arg1: string, arg2?: string) => void; addNewGroup: (number: string) => void; removeGroup: (number: string) => void; showGroupControls?: boolean; } export declare const SyncGroupList: React.FC; export {};