import Card from './CardInner';
import CardAction from './CardAction';
import CardList from './CardList';
import CardListItem from './CardListItem';
export type { CardProps } from './CardInner';
export { Card };
declare const CardCompound: typeof Card & {
    Action: typeof CardAction;
    List: typeof CardList;
    ListItem: typeof CardListItem;
};
export default CardCompound;
