import * as React from 'react'; type PaddingVariant = 'none' | 'small' | 'medium' | 'large'; interface CardProps extends React.HTMLAttributes { /** * The padding variant of the card * @default 'large' */ padding?: PaddingVariant; /** * The content of the card */ children: React.ReactNode; } /** * Card component - Arbor Design System * * A container component that provides consistent styling for content cards. * Uses subtle borders rather than shadows, following Arbor's minimal design approach. * * @example * ```tsx * *

Card Title

*

Card content goes here

*
* ``` */ declare const Card: React.ForwardRefExoticComponent>; export { Card, type CardProps };