import type React from "react"; interface BaseFormSectionProps extends React.ComponentPropsWithRef<"fieldset"> { title?: string; } declare const FormSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit> & string & Omit<({ title, children, ...props }: BaseFormSectionProps) => import("react/jsx-runtime").JSX.Element, keyof React.Component>; export default FormSection;