import React from 'react'; import './index.less'; export interface FormGroupProps { title: string; description: string; showTitle: boolean; showDescription: boolean; showBackgroundColor: boolean; backgroundColor: string; children: React.ReactNode; } /** * @title: 表单分组组件 * @description: 用于在表单中划分分组,支持标题、描述、背景色等配置 * @return: * * @Author: shengjie.zuo * @Date: 2024-11-25 17:14:25 */ declare const FormGroup: (props: FormGroupProps) => React.JSX.Element; export default FormGroup;