import React from 'react'; import type { syncGroupsTypes } from '@opengeoweb/store'; interface SyncGroupListItemProps { groupId: string; selected: string[]; sourcesById: syncGroupsTypes.SourceById[]; handleToggle: (id: string) => void; } export declare const SyncGroupListItem: React.FC; export {};