import { CardProps } from '../../components/Card/Card.types';
export interface CardsProps {
    /**
     * An array of card
     */
    cards: CardProps[];
}
