import { AllValuesFrom } from './owlProperty/AllValuesFrom';
import { Datatype } from './owlProperty/Datatype';
import { Deprecated } from './owlProperty/Deprecated';
import { DisjointWith } from './owlProperty/DisjointWith';
import { Equivalent } from './owlProperty/Equivalent';
import { External } from './owlProperty/External';
import { Functional } from './owlProperty/Functional';
import { Individual } from './owlProperty/Individual';
import { InverseFunctional } from './owlProperty/InverseFunctional';
import { Obj } from './owlProperty/Obj';
import { Operator } from './owlProperty/Operator';
import { RdfProperty } from './owlProperty/RdfProperty';
import { SomeValuesFrom } from './owlProperty/SomeValuesFrom';
import { SubClassOf } from './owlProperty/SubClassOf';
import { Symmetric } from './owlProperty/Symmetric';
import { Transitive } from './owlProperty/Transitive';
export declare class EdgeFactory {
    static getEdge(data: any, options: any): Obj | DisjointWith | Datatype | External | SubClassOf | AllValuesFrom | Deprecated | Equivalent | Functional | InverseFunctional | Symmetric | SomeValuesFrom | Transitive | RdfProperty | Individual | Operator;
}
