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