import * as React from "react"; interface FormSubSectionProps { onRemove?: (event?: React.SyntheticEvent) => void; children: React.ReactNode; } declare const FormSubSection: ({ children, onRemove }: FormSubSectionProps) => JSX.Element; export default FormSubSection;