import { ReactNode } from 'react'; import './style.less'; export interface CardProps { title: string; message: string; img: ReactNode; onComplete?: any; } declare function Card(props: CardProps): JSX.Element; export default Card;