import { ReactElement } from 'react'; import { ILink } from '../types/components.mjs'; import 'next/image'; import 'next/link'; import 'react-player'; type CardsColorfulProps = { className?: string; cards: { title: string; description: string; category: string; color: string; link: Omit; }[]; }; declare const CardsColorful: ({ cards, className }: CardsColorfulProps) => ReactElement; export { CardsColorful, type CardsColorfulProps };