import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
export declare const importsMapFieldBase: {};
/**
 * Field.
 */
export declare abstract class FieldBase implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the LCID of the field.
     */
    localeId: string;
    /**
     * Gets or sets the field code.
     */
    fieldCode: string;
    constructor(init?: Partial<FieldBase>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
