import * as model from "./index";
/**
 * Mapi property with PhysicalAddressIndexType value
 */
export declare class MapiPhysicalAddressIndexPropertyDto extends model.MapiPropertyDto {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): {
        /**
         * Attribute type map
         */
        name: string;
        baseName: string;
        type: string;
    }[];
    /**
     * Identifies the display types for physical addresses. Enum, available values: None, Home, Business, Other
     */
    value: string;
    /**
     * Mapi property with PhysicalAddressIndexType value
     * @param descriptor Property descriptor
     * @param value Identifies the display types for physical addresses. Enum, available values: None, Home, Business, Other
     */
    constructor(descriptor?: model.MapiPropertyDescriptor, value?: string);
}
/**
 *  MapiPhysicalAddressIndexPropertyDto model builder
 */
export declare class MapiPhysicalAddressIndexPropertyDtoBuilder {
    private readonly model;
    constructor(model: MapiPhysicalAddressIndexPropertyDto);
    /**
     * Build model.
     */
    build(): MapiPhysicalAddressIndexPropertyDto;
    /**
    * Property descriptor
    */
    descriptor(descriptor: model.MapiPropertyDescriptor): MapiPhysicalAddressIndexPropertyDtoBuilder;
    /**
    * Identifies the display types for physical addresses. Enum, available values: None, Home, Business, Other
    */
    value(value: string): MapiPhysicalAddressIndexPropertyDtoBuilder;
}
