import { AttributeInfo } from '../internal/attributeInfo'; import { FieldBase } from './fieldBase'; export declare const importsMapFieldUpdate: { FieldBase: typeof FieldBase; }; /** * Field for update. */ export declare class FieldUpdate extends FieldBase { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }