import React from 'react';
export default function SectionWrapper(props: {
    className?: string;
    children: JSX.Element;
    switchConfig: () => void;
    tip: string;
}): React.JSX.Element;
