import React from 'react';
interface FieldSectionProps {
    children: React.ReactNode;
    name: string;
}
export default function FieldSection({ children, name }: FieldSectionProps): JSX.Element;
export {};
