import { AttributeInfo } from '../internal/attributeInfo'; import { CommentBase } from './commentBase'; export declare const importsMapCommentUpdate: { CommentBase: typeof CommentBase; }; /** * Comment update. */ export declare class CommentUpdate extends CommentBase { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }