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