import React from 'react';
import { CollapseCardProps } from './types';
/**
 * A Collapse Card is basically a 'smarter' Card component that allows users to toggle the display of content by expanding or collapsing the card.
 */
declare const CollapseCard: React.FC<CollapseCardProps>;
export default CollapseCard;
