/** * Card Component * * Standardized card with variants following CREATE SOMETHING standards. * Uses canonical CSS custom properties for all design tokens. */ type CardVariant = 'standard' | 'elevated' | 'outlined'; type CardRadius = 'sm' | 'md' | 'lg' | 'xl'; type CardPadding = 'none' | 'sm' | 'md' | 'lg' | 'xl'; interface Props { variant?: CardVariant; radius?: CardRadius; padding?: CardPadding; hover?: boolean; href?: string; class?: string; children?: import('svelte').Snippet; onclick?: (event: MouseEvent) => void; } declare const Card: import("svelte").Component; type Card = ReturnType; export default Card;