/** * Implements the header of a form. * Can be inserted inside a CardForm or a SimpleForm and shows a title with a divider * that covers the entire width of the form. */ declare function FormHeader({ title, divider, variant }: FormHeaderProps): JSX.Element; type FormHeaderProps = { title: string; divider?: boolean; variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'subtitle1' | 'subtitle2' | 'body1' | 'body2'; }; export { FormHeader }; export type { FormHeaderProps }; //# sourceMappingURL=FormHeader.d.ts.map