import { AttributeInfo } from '../internal/attributeInfo';
import { CustomXmlPartLink } from './customXmlPartLink';
export declare const importsMapCustomXmlPart: {
    CustomXmlPartLink: typeof CustomXmlPartLink;
};
/**
 * DTO container with a CustomXmlPart.
 */
export declare class CustomXmlPart extends CustomXmlPartLink {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the custom xml part id.
     * Cannot be null.
     */
    id: string;
    /**
     * Gets or sets the custom xml part data.
     * Cannot be null.Default is an empty string.
     */
    data: string;
    constructor(init?: Partial<CustomXmlPart>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
