import { AttributeInfo } from '../internal/attributeInfo';
import { CustomXmlPart } from './customXmlPart';
import { LinkElement } from './linkElement';
export declare const importsMapCustomXmlPartsCollection: {
    CustomXmlPart: typeof CustomXmlPart;
    LinkElement: typeof LinkElement;
};
/**
 * The collection of CustomXmlPart.
 */
export declare class CustomXmlPartsCollection extends LinkElement {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the collection of CustomXmlPart.
     */
    customXmlPartsList: Array<CustomXmlPart>;
    constructor(init?: Partial<CustomXmlPartsCollection>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
