import { ComponentProps, FC } from 'react'; import { DeepPartial } from '../../types/types'; import { CardTheme } from './theme'; export interface CardProps extends ComponentProps<"div"> { href?: string; theme?: DeepPartial; className?: string; disabled?: boolean; } /** * @name Card * @description A Card component that can be used to display content in a card-like style. Usefull in a blog, a social network, a forum... It can be horizontal or vertical and can contain an image. * * @param {React.ReactNode} props.children The content of the card. * * @param {string} props.className Custom class name for the card. * * * @param {string} props.href, If provided, the card will be an anchor link. * * * @param {DeepPartial} props.theme, To override default theme for the card. * * @param {string} props.childrenClass, Custom class name for the children. * * @returns {React.ReactNode} A Card component. * * @example ``` * *
Card title!
*

* Hello there! *

*
* ``` */ export declare const Card: FC; //# sourceMappingURL=Card.d.ts.map