import React from "react";
interface SectionProps {
    title?: string;
    children?: React.ReactNode;
    className?: string;
    collapsable?: boolean;
}
declare const Section: React.FC<SectionProps>;
export default Section;
