///
import { FormBaseProps } from '../form-input';
import { FormProps } from 'antd/lib/form';
interface IFieldKey {
key: string;
width: string;
label: string;
placeholder: string;
}
interface FormInputMultipleProps extends FormBaseProps, Omit {
onChange?: () => void;
fieldKeys: IFieldKey[];
}
declare const FormInputMultiple: (props: FormInputMultipleProps) => JSX.Element;
export default FormInputMultiple;