import React from 'react'; import { CustomComponentWithChildrenProps } from '../styles'; import './CardGroup.types'; export interface CardGroupProps extends CustomComponentWithChildrenProps { } declare const slots: { root: { slot: "root"; name: "MuiCardGroup"; }; }; export type CardGroupSlots = keyof typeof slots; declare const CardGroup: React.FC; export default CardGroup;