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<ILink, 'children'>;
    }[];
};
declare const CardsColorful: ({ cards, className }: CardsColorfulProps) => ReactElement;

export { CardsColorful, type CardsColorfulProps };
