import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface CardContentProps extends HTMLAttributes { ref?: Ref; asChild?: boolean; children?: ReactNode; } export declare const CardContent: FC;