import { ForwardRefExoticComponent, PropsWithoutRef, ReactNode, RefAttributes } from 'react'; import { CardContent as VanillaCardContent, CardContentProperties as VanillaCardContentProperties } from '@pmndrs/uikit-default'; import { ClassListProperties } from '@react-three/uikit'; export { CardContent as VanillaCardContent } from '@pmndrs/uikit-default'; export type CardContentProperties = VanillaCardContentProperties & { children?: ReactNode; } & ClassListProperties; export declare const CardContent: ForwardRefExoticComponent & RefAttributes>;