import { FC, ReactNode } from 'react'; interface CardProps { title: string; children: ReactNode; } declare const Card: FC; export default Card;