import React from 'react'; import { type CustomComponentWithChildrenProps } from '../../../styles'; import './ChipGroup.types'; export interface ChipGroupProps extends CustomComponentWithChildrenProps { } declare const slots: { root: { slot: "root"; name: "MuiChipGroup"; }; }; export type ChipGroupSlots = keyof typeof slots; declare const ChipGroup: React.FC; export default ChipGroup;