import { AttributeInfo } from '../internal/attributeInfo'; import { FieldBase } from './fieldBase'; import { Position } from './position'; export declare const importsMapFieldInsert: { FieldBase: typeof FieldBase; Position: typeof Position; }; /** * Field for insert. */ export declare class FieldInsert extends FieldBase { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the position of the node that will be used to determine the placement of a new field. */ position: Position; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }