import { UMLActivityControlFlow } from './uml-activity-diagram/uml-activity-control-flow/uml-activity-control-flow'; import { UMLClassAggregation } from './uml-class-diagram/uml-class-aggregation/uml-class-aggregation'; import { UMLClassBidirectional } from './uml-class-diagram/uml-class-bidirectional/uml-class-bidirectional'; import { UMLClassComposition } from './uml-class-diagram/uml-class-composition/uml-class-composition'; import { UMLClassDependency } from './uml-class-diagram/uml-class-dependency/uml-class-dependency'; import { UMLClassInheritance } from './uml-class-diagram/uml-class-inheritance/uml-class-inheritance'; import { UMLClassRealization } from './uml-class-diagram/uml-class-realization/uml-class-realization'; import { UMLClassUnidirectional } from './uml-class-diagram/uml-class-unidirectional/uml-class-unidirectional'; import { UMLCommunicationLink } from './uml-communication-diagram/uml-communication-link/uml-communication-link'; import { UMLComponentDependency } from './uml-component-diagram/uml-component-dependency/uml-component-dependency'; import { UMLComponentInterfaceProvided } from './uml-component-diagram/uml-component-interface-provided/uml-component-interface-provided'; import { UMLComponentInterfaceRequired } from './uml-component-diagram/uml-component-interface-required/uml-component-interface-required'; import { UMLDeploymentAssociation } from './uml-deployment-diagram/uml-deployment-association/uml-deployment-association'; import { UMLObjectLink } from './uml-object-diagram/uml-object-link/uml-object-link'; import { UMLUseCaseAssociation } from './uml-use-case-diagram/uml-use-case-association/uml-use-case-association'; import { UMLUseCaseExtend } from './uml-use-case-diagram/uml-use-case-extend/uml-use-case-extend'; import { UMLUseCaseGeneralization } from './uml-use-case-diagram/uml-use-case-generalization/uml-use-case-generalization'; import { UMLUseCaseInclude } from './uml-use-case-diagram/uml-use-case-include/uml-use-case-include'; import { UMLDeploymentInterfaceProvided } from './uml-deployment-diagram/uml-deployment-interface-provided/uml-deployment-interface-provided'; import { UMLDeploymentInterfaceRequired } from './uml-deployment-diagram/uml-deployment-interface-required/uml-deployment-interface-required'; import { UMLDeploymentDependency } from './uml-deployment-diagram/uml-deployment-dependency/uml-deployment-dependency'; import { UMLPetriNetArc } from './uml-petri-net/uml-petri-net-arc/uml-petri-net-arc'; import { UMLReachabilityGraphArc } from './uml-reachability-graph/uml-reachability-graph-arc/uml-reachability-graph-arc'; import { SyntaxTreeLink } from './syntax-tree/syntax-tree-link/syntax-tree-link'; import { FlowchartFlowline } from './flowchart/flowchart-flowline/flowchart-flowline'; export declare const UMLRelationships: { ClassAggregation: typeof UMLClassAggregation; ClassBidirectional: typeof UMLClassBidirectional; ClassComposition: typeof UMLClassComposition; ClassDependency: typeof UMLClassDependency; ClassInheritance: typeof UMLClassInheritance; ClassRealization: typeof UMLClassRealization; ClassUnidirectional: typeof UMLClassUnidirectional; ObjectLink: typeof UMLObjectLink; ActivityControlFlow: typeof UMLActivityControlFlow; UseCaseAssociation: typeof UMLUseCaseAssociation; UseCaseExtend: typeof UMLUseCaseExtend; UseCaseGeneralization: typeof UMLUseCaseGeneralization; UseCaseInclude: typeof UMLUseCaseInclude; CommunicationLink: typeof UMLCommunicationLink; ComponentDependency: typeof UMLComponentDependency; ComponentInterfaceProvided: typeof UMLComponentInterfaceProvided; ComponentInterfaceRequired: typeof UMLComponentInterfaceRequired; DeploymentAssociation: typeof UMLDeploymentAssociation; DeploymentDependency: typeof UMLDeploymentDependency; DeploymentInterfaceProvided: typeof UMLDeploymentInterfaceProvided; DeploymentInterfaceRequired: typeof UMLDeploymentInterfaceRequired; PetriNetArc: typeof UMLPetriNetArc; ReachabilityGraphArc: typeof UMLReachabilityGraphArc; SyntaxTreeLink: typeof SyntaxTreeLink; FlowchartFlowline: typeof FlowchartFlowline; };