import * as React from 'react'; import './index.scss'; export interface CardPanelProps { description?: 'string'; color?: 'string'; style?: 'object'; text?: 'string'; colorEnter?: 'string'; colorLeave?: 'string'; } declare const CardPanel: React.FC; export default CardPanel;