import { EModelElementImpl } from './emodel-element-impl';
import { ENamedElement } from './enamed-element';
export declare abstract class ENamedElementImpl extends EModelElementImpl implements ENamedElement {
    name: string;
    constructor(name?: string);
    getName(): string;
    setName(name: string): void;
}
//# sourceMappingURL=enamed-element-impl.d.ts.map