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