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