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