import { FC, ReactNode } from 'react'; import { FormItemProps } from 'antd/es/form'; import { FormItemConfig, FormItemName } from '../../types'; import './style'; export interface AddableSectionProps extends FormItemConfig { parentName?: FormItemName; formItemProps?: FormItemProps; preview?: boolean; disabledFromParent?: boolean; setShowStepButton?: (showButton: boolean) => void; max?: number; min?: number; initCount?: number; addButtonText?: string; addButtonIcon?: ReactNode; description?: string | ReactNode; } declare const AddableSection: FC; export default AddableSection;