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