import { AttributeInfo } from '../internal/attributeInfo';
import { CustomXmlPart } from './customXmlPart';
export declare const importsMapCustomXmlPartUpdate: {
    CustomXmlPart: typeof CustomXmlPart;
};
/**
 * Custom xml part update.
 */
export declare class CustomXmlPartUpdate extends CustomXmlPart {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    constructor(init?: Partial<CustomXmlPartUpdate>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
