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: * - Optional background variants (strong, stronger) * - Configurable padding sizes * - Supports layout utilities 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>;