import * as React from 'react'; import './style/index.css'; import { ObjectInterface } from '@/components/_utils/interfaces'; export interface GroupOption extends ObjectInterface { id: string; img?: string; name?: string; } export interface MapBaseChangeProps { className?: string; headerTitle?: string; groupOptions?: GroupOption[]; currentStyle?: string; onClose?: () => void; onChange?: (id: string) => void; hideBase?: boolean; changeHideBase?: (checked: boolean) => void; } export interface GroupItemProps { className?: string; id?: string; img?: string; name?: string; onClick?: (key: string) => void; } declare const MapBaseChange: React.FC; export default MapBaseChange;