export interface FormGroupProps { /** * 设置是否纵向排列 */ column?: boolean; /** * 在网格布局中应该显示几列 */ columns?: number; /** * 密集模式 */ dense?: boolean; /** * 禁用左缩进。默认为`false`,会自动开启左缩进。 */ disabledIndent?: boolean; } /** * 表单分组 */ declare const FormGroup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, { className: string | undefined; } & FormGroupProps, "className">; export default FormGroup;