import { default as React } from 'react'; import { CardBackgroundProps } from '../CardBackground/CardBackground'; import { CardVariant, CardDirection } from './CardContext'; export type { CardVariant, CardDirection }; export interface CardProps extends Omit, "children"> { variant?: CardVariant; /** * @deprecated Usar `orientation` en su lugar. */ direction?: CardDirection; orientation?: CardDirection; cardBackground?: Omit; children?: React.ReactNode; } export interface CardSlotProps extends React.HTMLAttributes { children?: React.ReactNode; }