import React from 'react'; declare type CardProps = { title: string; meta: React.ReactNode[]; tags: React.ReactNode[]; onClick?: () => void; }; declare const Card: (props: CardProps) => JSX.Element; export default Card;