import React from 'react'; import { I18nContext } from '../../../components/i18n/i18n-context'; import { UMLElementRepository } from '../../../services/uml-element/uml-element-repository'; import { AsyncDispatch } from '../../../utils/actions/actions'; import { SyntaxTreeTerminal } from './syntax-tree-terminal'; type OwnProps = { element: SyntaxTreeTerminal; }; type StateProps = {}; type DispatchProps = { update: typeof UMLElementRepository.update; delete: AsyncDispatch; }; export type Props = OwnProps & StateProps & DispatchProps & I18nContext; export declare const SyntaxTreeTerminalUpdate: React.ComponentClass; export {};