import { ToggleButtonGroupProps } from '@mui/material'; import { Dispatch, ReactNode, SetStateAction } from 'react'; export interface EliceSelectionProps extends ToggleButtonGroupProps { type: 'checkbox' | 'radio'; options: { value: string; content: ReactNode | string; }[]; value: string[]; setValue: Dispatch>; limitSelectCount?: number; } declare const EliceSelection: ({ type, options, value, setValue, orientation, disabled, limitSelectCount, }: EliceSelectionProps) => import("react/jsx-runtime").JSX.Element; export default EliceSelection;