import { EStructuralFeature } from './estructural-feature';
export interface EReference extends EStructuralFeature {
    isContainer(): boolean;
    isContainment(): boolean;
    setContainment(containment: boolean): void;
    getEOpposite(): EReference | undefined;
    setEOpposite(value: EReference): void;
}
//# sourceMappingURL=ereference.d.ts.map