import * as React from "react"; interface FormSectionHeaderProps { title: string; subtitle?: React.ReactNode; } declare const FormSectionHeader: ({ title, subtitle }: FormSectionHeaderProps) => JSX.Element; export default FormSectionHeader;