import { AttributeInfo } from '../internal/attributeInfo';
import { FormField } from './formField';
import { LinkElement } from './linkElement';
export declare const importsMapFormFieldCollection: {
    FormField: typeof FormField;
    LinkElement: typeof LinkElement;
};
/**
 * DTO container with a collection of form fields.
 */
export declare class FormFieldCollection extends LinkElement {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the collection of form fields.
     */
    list: Array<FormField>;
    constructor(init?: Partial<FormFieldCollection>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
