import type React from 'react'; import type { BoxProps } from '@mui/material/Box'; import { StatusChipWithCopyProps } from '../StatusChipWithCopy'; export interface ChipConfig extends Omit { key: string; content: React.ReactNode; sx?: object; } export interface StatusGroupChipsProps extends Omit { chips: ChipConfig[]; containerSx?: object; defaultChipSx?: object; }