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