import { AttributeInfo } from '../internal/attributeInfo'; import { FixedPageSaveOptionsData } from './fixedPageSaveOptionsData'; export declare const importsMapPsSaveOptionsData: { FixedPageSaveOptionsData: typeof FixedPageSaveOptionsData; }; /** * Container class for ps save options. */ export declare class PsSaveOptionsData extends FixedPageSaveOptionsData { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets a value indicating whether the document should be saved using a booklet printing layout. */ useBookFoldPrintingSettings: boolean; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }