import React from 'react';
interface IFieldsConfigurePanelProps {
    isOpen?: boolean;
    type?: string;
    component?: string;
    field?: any;
    error?: string;
    onDismiss?: () => void;
    onSubmit?: (e: any) => void;
}
declare const FieldsConfigurePanel: React.FC<IFieldsConfigurePanelProps>;
export default FieldsConfigurePanel;
