import React from 'react'; import { Action } from '../../../forms'; interface FormProps { style?: any; defaultValue?: any; creationDefaultValue?: any; formKey: string; isCustom?: boolean; actions: Action[]; floatingTools?: boolean; defaultEditMode?: boolean; styleScreen?: any; hideButtonBackground?: boolean; } declare const FormView: ({ style, defaultValue, creationDefaultValue, formKey, isCustom, actions: _actions, floatingTools, defaultEditMode, styleScreen, hideButtonBackground, }: FormProps) => React.JSX.Element; export default FormView;