import React from "react";
interface ISectionProps {
    title: string;
    children: React.ReactNode;
    className?: string;
}
declare const Section: {
    (props: ISectionProps): React.JSX.Element;
    displayName: string;
};
export default Section;
