import { AttributeInfo } from '../internal/attributeInfo';
import { TableCellFormat } from './tableCellFormat';
import { WordsResponse } from './wordsResponse';
export declare const importsMapTableCellFormatResponse: {
    TableCellFormat: typeof TableCellFormat;
    WordsResponse: typeof WordsResponse;
};
/**
 * The REST response with the formatting properties of a table cell.
 * This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/rows/{1}/cells/{2}/cellformat" REST API requests.
 */
export declare class TableCellFormatResponse extends WordsResponse {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the formatting properties of a table cell.
     */
    cellFormat: TableCellFormat;
    constructor(init?: Partial<TableCellFormatResponse>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
