import { AttributeInfo } from '../internal/attributeInfo';
import { FieldLink } from './fieldLink';
export declare const importsMapField: {
    FieldLink: typeof FieldLink;
};
/**
 * DTO container with a field.
 */
export declare class Field extends FieldLink {
    /**
     * 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 result.
     */
    result: string;
    constructor(init?: Partial<Field>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
