@kadconsulting/dry
Version:
KAD Reusable Component Library
10 lines (9 loc) • 584 B
TypeScript
/// <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;