import { PureComponent } from 'react'; import * as React from 'react'; import FormContext from './FormContext'; export interface IFormSectionProps { name: string; component?: React.ElementType; } declare class FormSection extends PureComponent { static defaultProps: { component: string; }; static contextType: React.Context; context: React.ContextType; constructor(props: any, context: any); getFormContext: (name: any) => { zentForm: { prefix: any; }; }; render(): JSX.Element; } export default FormSection;