import React from 'react'; type CardProps = { children: React.ReactNode; className?: string; }; export declare const Card: React.FC; export {};