import React from 'react';
import { type ISectionProps } from './types';
/**
 * Component for creating page sections.
 */
declare const Section: React.ForwardRefExoticComponent<Omit<ISectionProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { Section };
