import type { StyleSlots } from '../../../core/types'; /** Visual regions for the Card component. */ type CardSlot = 'root' | 'header' | 'title' | 'description' | 'action' | 'content' | 'footer'; declare const cardStyles: StyleSlots; /** CVA variants for the Card root. */ declare const cardVariants: (props?: ({ variant?: "default" | "glass" | "glass-accent" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export { cardStyles, cardVariants }; export type { CardSlot }; //# sourceMappingURL=Card.styles.d.ts.map