import { PropsWithChildren } from 'react'; export type CardProps = PropsWithChildren<{ className?: string; full?: boolean; fullWidth?: boolean; fullHeight?: boolean; rounded?: boolean; padding?: boolean; gap?: boolean; /** * Si es `false`, no se aplican borde por defecto ni `hover:ui-border-brand` en tarjetas clicables. * Útil en contenedores flush (p. ej. `Drawer` con `surface="brand"`). */ bordered?: boolean; active?: boolean; onClick?: () => void; }>; //# sourceMappingURL=card.d.ts.map