import React from 'react';
import './style.scss';
import './style.scss';
type SectionHeadProps = {
    text: string | JSX.Element;
    closeFunction?: () => void;
    children?: JSX.Element;
    className?: string;
};
declare const SectionHead: React.FC<SectionHeadProps>;
export default SectionHead;
