import { AttributeInfo } from '../internal/attributeInfo'; import { SaveOptionsData } from './saveOptionsData'; export declare const importsMapWordMLSaveOptionsData: { SaveOptionsData: typeof SaveOptionsData; }; /** * Container class for wml save options. */ export declare class WordMLSaveOptionsData extends SaveOptionsData { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets a value indicating whether to use pretty formats output. */ prettyFormat: boolean; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }