import { AttributeInfo } from '../internal/attributeInfo';
import { CustomXmlPart } from './customXmlPart';
import { WordsResponse } from './wordsResponse';
export declare const importsMapCustomXmlPartResponse: {
    CustomXmlPart: typeof CustomXmlPart;
    WordsResponse: typeof WordsResponse;
};
/**
 * The REST response with a custom xml part.
 * This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/customXmlParts/0" REST API requests.
 */
export declare class CustomXmlPartResponse extends WordsResponse {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the custom xml part.
     */
    customXmlPart: CustomXmlPart;
    constructor(init?: Partial<CustomXmlPartResponse>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
