import { AttributeInfo } from '../internal/attributeInfo';
import { FieldNames } from './fieldNames';
import { WordsResponse } from './wordsResponse';
export declare const importsMapFieldNamesResponse: {
    FieldNames: typeof FieldNames;
    WordsResponse: typeof WordsResponse;
};
/**
 * The REST response with a collection of mail merge fields.
 * This response should be returned by the service when handling: GET /{name}/mailMergeFieldNames.
 */
export declare class FieldNamesResponse extends WordsResponse {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the collection of mail merge fields.
     */
    fieldNames: FieldNames;
    constructor(init?: Partial<FieldNamesResponse>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
