import * as model from "./index";
export declare class ListResponseOfEmailThread {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
    value: Array<model.EmailThread>;
    /**
     *
     * @param value
     */
    constructor(value?: Array<model.EmailThread>);
}
/**
 *  ListResponseOfEmailThread model builder
 */
export declare class ListResponseOfEmailThreadBuilder {
    private readonly model;
    constructor(model: ListResponseOfEmailThread);
    /**
     * Build model.
     */
    build(): ListResponseOfEmailThread;
    value(value: Array<model.EmailThread>): ListResponseOfEmailThreadBuilder;
}
