/// import { Component, MouseEvent } from 'react'; export interface FormActionsProps { loadingStateActiveOnSubmitButton?: boolean; noBackButton?: boolean; noJsonDebugger?: boolean; noSubmitButton?: boolean; objectToDebug?: any; submitButtonDisabled?: boolean; onChangeDebugObject?: (object: any) => void; onClickBackButton?: (e: MouseEvent) => void; } export interface FormActionsState { debugModeEnabled: boolean; } export declare class FormActions extends Component { static defaultProps: FormActionsProps; state: FormActionsState; render(): JSX.Element; toggleDebugMode: () => void; }