import * as model from "./index";
/**
 * List of VCard documents
 */
export declare class ContactList extends model.ListResponseOfContactDto {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
    /**
     * List of VCard documents
     * @param value
     */
    constructor(value?: Array<model.ContactDto>);
}
/**
 *  ContactList model builder
 */
export declare class ContactListBuilder {
    private readonly model;
    constructor(model: ContactList);
    /**
     * Build model.
     */
    build(): ContactList;
    value(value: Array<model.ContactDto>): ContactListBuilder;
}
