import { HTMLAttributes, ReactNode } from 'react';
declare function Cards(props: HTMLAttributes): React.ReactElement;
type CardProps = HTMLAttributes & {
icon?: ReactNode;
title: ReactNode;
description?: ReactNode;
href?: string;
external?: boolean;
};
declare function Card({ icon, title, description, ...props }: CardProps): React.ReactElement;
export { Card, type CardProps, Cards };