import { INameable } from "./types"; import { XmlObject } from "./XmlObject"; export declare abstract class Nameable extends XmlObject implements INameable { /** Name/label of this object. */ name?: string; /** Color of this object in HTML-style format. (#rrggbb) */ color?: string; /** Comment/description of this object. */ comment?: string; constructor(name?: string, color?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }