/**
 * @category Internal
 */
export declare abstract class UpdateEntityCommentOrLabel {
    id: string;
    /**
     * Type will be assigned on construction.
     */
    readonly type: string;
    constructor(type: string);
}
