import React from 'react'; import './index.scss'; interface IGroupPanelProps { title?: React.ReactNode; xIndex?: number; className?: string; children?: React.ReactNode; } declare type IGroupPanel = React.FC; declare type IFormGroup = React.FC & { GroupPanel?: IGroupPanel; }; declare const FormGroup: IFormGroup; export default FormGroup;