import { FC, ReactNode } from 'react'; import { VisualSizesEnum } from '../../helpers/fontHelpers'; export interface CardBodyProps { /** Content to render inside the card body. */ children?: ReactNode; /** The size of the card body. */ size?: VisualSizesEnum; /** Class name to allow custom styling of the card body. */ className?: string; /** Whether the body has padding. */ hasPadding?: boolean; } export declare const CardBody: FC;