import * as React from "react"; export interface FormSectionBodyProps { children?: React.ReactNode; /** * Allows custom styling */ className?: string; } declare const FormSectionBody: ({ children, className }: FormSectionBodyProps) => React.JSX.Element; export default FormSectionBody;