import React, { CSSProperties } from 'react'; import { MyCardProps } from '../Card'; declare type CardProps = Pick; export interface FormGroupProps extends CardProps { appId?: string; getEngineApis?: any; required?: boolean; fold?: boolean; onFoldChange?: (fold: boolean) => void; iconType?: 'none' | 'line' | 'circle' | 'auto' | 'divider'; style: CSSProperties & { titleColor?: string; titleFontSize?: number; titleLineHeight?: number; titleFontWeight?: number; }; titleStyle?: 'none' | 'divider'; 'data-compid'?: string; } export declare const formGroupPrefixCls = "ued-form-group"; declare const FormGroup: React.ForwardRefExoticComponent>; export default FormGroup;