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