burdy
Version:
Open Source Headless Platform
13 lines (12 loc) • 342 B
TypeScript
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;