import { AttributeInfo } from '../internal/attributeInfo';
import { FontInfo } from './fontInfo';
import { WordsResponse } from './wordsResponse';
export declare const importsMapAvailableFontsResponse: {
    FontInfo: typeof FontInfo;
    WordsResponse: typeof WordsResponse;
};
/**
 * The REST response with data on system, additional and custom fonts, available for document processing.
 */
export declare class AvailableFontsResponse extends WordsResponse {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the list of additional fonts, provided by Aspose team.
     */
    additionalFonts: Array<FontInfo>;
    /**
     * Gets or sets the list of custom user fonts from user cloud storage. To use them, you should specify "fontsLocation" parameter in any request.
     */
    customFonts: Array<FontInfo>;
    /**
     * Gets or sets the list of system fonts, available on the server.
     */
    systemFonts: Array<FontInfo>;
    constructor(init?: Partial<AvailableFontsResponse>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
