import React from 'react'; type FormSectionProps = { className?: string; children?: React.ReactNode; /** Label to display as heading above section */ label?: string | null; last?: boolean; }; declare const FormSection: (props: FormSectionProps) => React.ReactNode; export default FormSection;