import { PropsWithChildren } from 'react'; import { FormSectionProps } from './form-section.interfaces'; export declare const FormSection: { ({ border, icon, title, children, className, }: PropsWithChildren): JSX.Element; defaultTheme: (theme: import("..").CommonTheme) => [string, { border: { color: string; width: string; style: string; }; padding: string; heading: { fontSize: string; marginBottom: string; }; icon: { primaryColor: string; secondaryColor: string; primaryOpacity: string; secondaryOpacity: string; size: string; marginRight: string; }; }]; };