import React from 'react'; import { UMLInterfaceRequired } from './uml-interface-required'; type OwnProps = { element: UMLInterfaceRequired; scale: number; }; type StateProps = { hasOppositeRequiredInterface: boolean; currentRequiredInterfaces: UMLInterfaceRequired[]; currentAllInterfaces: any; }; type DispatchProps = {}; type Props = OwnProps & StateProps & DispatchProps; export declare const UMLInterfaceRequiredComponent: import("react-redux").ConnectedComponent, { scale: number; element: UMLInterfaceRequired; context?: React.Context> | undefined; store?: import("redux").Store | undefined; }>; export {};