/// <reference types="react" />
import './ContentSection.scss';
import type { ContentSectionProps, ContentSectionColumnProps } from './ContentSectionTypes';
type ContentSectionType = React.ForwardRefExoticComponent<ContentSectionProps & React.RefAttributes<HTMLDivElement>> & {
    Column1: React.ForwardRefExoticComponent<ContentSectionColumnProps & React.RefAttributes<HTMLDivElement>>;
    Column2: React.ForwardRefExoticComponent<ContentSectionColumnProps & React.RefAttributes<HTMLDivElement>>;
};
declare const ContentSection: ContentSectionType;
export default ContentSection;
