import { AttributeInfo } from '../internal/attributeInfo'; import { OfficeMathObject } from './officeMathObject'; import { WordsResponse } from './wordsResponse'; export declare const importsMapOfficeMathObjectResponse: { OfficeMathObject: typeof OfficeMathObject; WordsResponse: typeof WordsResponse; }; /** * The REST response with a OfficeMath object. * This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/officeMathObjects/0" REST API requests. */ export declare class OfficeMathObjectResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the OfficeMath object. */ officeMathObject: OfficeMathObject; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }