import { HTMLAttributes } from 'react'; export interface QuoteCardProps { /** Display the quote in the card */ quote: string; /** Display the Author of the Quote */ author?: string; } declare const QuoteCard: ({ quote, author, ...other }: QuoteCardProps & HTMLAttributes) => JSX.Element; export default QuoteCard;