import { ReactNode } from 'react'; interface ButtonProps { children: ReactNode; variant?: "primary" | "secondary" | "danger"; size?: "small" | "medium" | "large"; disabled?: boolean; onClick?: () => void; } interface CardProps { children: ReactNode; title?: string; className?: string; } export type { ButtonProps as B, CardProps as C };