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