import * as React from "react"; export interface FormSectionProps { children?: React.ReactNode; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const FormSection: ({ children, className, "data-cy": dataCy }: FormSectionProps) => React.JSX.Element; export default FormSection;