import { type CardProps as RadixCardProps } from '@radix-ui/themes'; type CardVariant = 'surface' | 'classic'; type CardSize = '1' | '2'; interface CardProps extends Omit { variant?: CardVariant; size?: CardSize; } export declare const Card: import("react").ForwardRefExoticComponent>; export {};