import React from 'react'; import './InlineForms.css'; interface InlineFormsProps { /** * An optional function to be called when form is closed **/ onCancel?: (arg?: any) => void; /** * An optional function to be called when form is saved **/ onSave?: (arg?: any) => void; defaultTitle?: string; fieldArray?: Array; disableSave?: boolean; defaultOpen?: boolean; testId?: String; } declare const InlineForms: (props: InlineFormsProps) => React.JSX.Element; export default InlineForms;