import { FC } from 'react'; /** * CardSection properties */ export interface CardSectionProps { /** Blue background */ blue?: boolean; /** Adds one or more classnames for an element */ className?: string; /** Set background color */ color?: 'blue' | 'dark' | 'green' | 'light' | 'purple' | 'red' | 'lightblue'; /** Dark background */ dark?: boolean; /** Green background */ green?: boolean; /** Light-gray background */ light?: boolean; /** Purple background */ purple?: boolean; /** Red background */ red?: boolean; /** Unstrict props */ [propName: string]: any; } export declare const CardSection: FC;