import React, { ReactNode } from 'react'; interface ICardProps { title?: string | ReactNode; type?: 'inside' | 'outside'; style?: any; className?: string; contentStyle?: any; contentClassName?: string; children?: any; } declare const Card: React.FC; export default Card;