import { FC, ReactNode } from 'react'; import { VisualSizesEnum } from '../../helpers/fontHelpers'; export interface CardFooterProps { /** Content to render inside the card footer. */ children?: ReactNode; /** The size of the card footer. */ size?: VisualSizesEnum; /** Class name to allow custom styling of the card footer. */ className?: string; /** Whether the footer has a top border. */ hasBorder?: boolean; } export declare const CardFooter: FC;