/// import { IconProp } from "@fortawesome/fontawesome-svg-core"; export declare type CardDataType = { icon: IconProp; label: string; code: string; name: string | JSX.Element; }; declare type Props = { data: CardDataType[]; link?: string; bgColor?: string; }; export default function Card({ data, link, bgColor }: Props): JSX.Element; export {};