import { ComponentPropsWithoutRef } from 'react'; import { LayoutUtilProps, Size } from '../../types'; /** * Props for the Card component * @extends ComponentPropsWithoutRef<"div"> * @extends LayoutUtilProps */ export type CardProps = ComponentPropsWithoutRef<"div"> & LayoutUtilProps & { /** * The background variant of the card. * @default undefined */ background?: "strong" | "stronger"; /** * The padding size of the card. * @default "medium" */ padding?: Extract; }; /** * Card component for displaying content in a contained, elevated container. * * Features: * - Configurable padding sizes (0, xsmall, small, medium, large) * - Background variants (strong, stronger) for visual emphasis * - Responsive design with automatic layout utilities * - Consistent border radius and styling * - Support for all standard div props * - Layout utility props for positioning and spacing * * @example * *

Card Title

*

Card content goes here

*
*/ export declare const Card: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & LayoutUtilProps & { /** * The background variant of the card. * @default undefined */ background?: "strong" | "stronger"; /** * The padding size of the card. * @default "medium" */ padding?: Extract; } & import('react').RefAttributes>;