import { HTMLAttributes } from 'react'; import { Radius } from '../utils-client/radius'; import { Shadow } from '../utils/shadow'; export type CardShadow = Shadow; export interface CardProps extends HTMLAttributes { /** * Use the children as the component. * @default false */ asChild?: boolean; /** * The shadow size for the card. * @default "none" * @example "md" */ shadow?: CardShadow; /** * The border radius for the card. * If not provided, uses the global default radius from RadiusProvider. * @default "md" (from global context) * @example "lg" */ radius?: Radius; } export declare const Card: (props: CardProps) => import("react/jsx-runtime").JSX.Element;