import React from 'react';
import './style.scss';
type SimpleCollapseSectionProps = {
    title: string;
    label: string;
    child: React.ReactNode;
    defaultOpen?: boolean;
    className?: string;
};
declare const SimpleCollapseSection: React.FC<SimpleCollapseSectionProps>;
export default SimpleCollapseSection;
